-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
61 lines (49 loc) · 1.15 KB
/
build.gradle
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
51
52
53
54
55
56
57
58
59
60
61
group 'com.aamirabro'
version '1.0'
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'bintray-release'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.5.0'
}
}
sourceCompatibility = 1.8
repositories {
jcenter()
google()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'com.android.tools.build:gradle:3.0.0'
compile 'org.json:json:20160212'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
//uploadArchives {
// repositories {
// mavenDeployer {
// repository(url: uri('repo'))
// }
// }
//}
ext {
userOrg = 'aamirabro'
groupId = 'com.aamirabro'
publishVersion = '0.9.3'
website = 'https://github.com/AamirAbro/ConfigJson'
licences = ['MIT']
}
publish {
artifactId = 'configjsonplugin'
desc = 'Create java constants class from json config file'
userOrg = rootProject.userOrg
groupId = rootProject.groupId
publishVersion = rootProject.publishVersion
website = rootProject.website
licences = rootProject.licences
}