forked from sqldelight/sqldelight
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
52 lines (46 loc) · 1.25 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
apply plugin: 'maven'
ext {
kotlinVersion = '1.0.5'
antlrVersion = '4.5.3'
compileSdkVersion = 24
buildToolsVersion = '24.0.2'
dep = [
androidPlugin: 'com.android.tools.build:gradle:2.2.1',
supportAnnotations: 'com.android.support:support-annotations:24.2.1',
antlr: "org.antlr:antlr4:$antlrVersion",
antlrRuntime: "org.antlr:antlr4-runtime:$antlrVersion",
javaPoet: 'com.squareup:javapoet:1.8.0',
kotlinStdLib: "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
kotlinReflect: "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion",
kotlinGradlePlugin: "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion",
junit: 'junit:junit:4.12',
truth: 'com.google.truth:truth:0.30',
bugsnag: 'com.bugsnag:bugsnag:2.0.0',
intellij: 'IC-2016.1',
retrolambda: 'me.tatarka:gradle-retrolambda:3.3.1'
]
isCi = "true".equals(System.getenv('CI'))
}
subprojects {
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url SNAPSHOT_REPOSITORY_URL
}
}
dependencies {
classpath dep.kotlinGradlePlugin
}
}
repositories {
mavenCentral()
jcenter()
maven {
url SNAPSHOT_REPOSITORY_URL
}
}
group = GROUP
version = VERSION_NAME
}