-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (41 loc) · 1.06 KB
/
build.gradle
File metadata and controls
50 lines (41 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
apply plugin: "com.gradle.plugin-publish"
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'maven'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.7"
}
}
sourceCompatibility = 1.8
group 'com.github.nomensvyat'
version '3.0.0'
pluginBundle {
website = 'https://github.com/NomenSvyat/SwitchBoxPlugin'
vcsUrl = 'https://github.com/NomenSvyat/SwitchBoxPlugin'
description = 'Adds fields to BuildConfig class from json file'
tags = ['android']
plugins {
greetingsPlugin {
id = 'com.github.nomensvyat.switchbox'
displayName = 'SwitchBox plugin'
}
}
}
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'com.android.tools.build:gradle:3.0.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'junit', name: 'junit', version: '4.12'
}