-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (58 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
72
73
buildscript {
ext {
Bintray = [
GROUP_ID : 'com.izikode.izilib',
REPO : 'izilib',
NAME : 'base-kotlin-compiler',
DESCRIPTION : 'Kotlin utility abstraction level above the Java annotation processor',
WEBSITE : 'https://github.com/iFanie/BaseKotlinCompiler',
GIT : 'https://github.com/iFanie/BaseKotlinCompiler.git',
DEV_ID : 'iFanie',
DEV_NAME : 'Fanie Veizis',
DEV_EMAIL : 'fanieveizis@gmail.com',
LICENCE : 'The Apache Software License, Version 2.0',
LICENCE_URL : 'http://www.apache.org/licenses/LICENSE-2.0.txt',
LICENCES : [ "Apache-2.0" ]
]
Version = [
Build : [
CODE : 13,
MAJOR : 0,
MINOR : 13,
getNAME : {
return "${ Version.Build.MAJOR }.${ Version.Build.MINOR }"
}
],
Core : [
GRADLE : '3.1.4',
MAVEN : '2.0',
BINTRAY : '1.8.0',
JAVA : '1.8',
KOTLIN : '1.3.11'
],
Dependency : [
COMPAT : '28.0.0',
KPOET : '0.7.0'
]
]
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:${ Version.Core.GRADLE }"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${ Version.Core.KOTLIN }"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:${ Version.Core.BINTRAY }"
classpath "com.github.dcendents:android-maven-gradle-plugin:${ Version.Core.MAVEN }"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}