-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (33 loc) · 980 Bytes
/
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
buildscript {
ext.kotlinVersion = "1.1.51"
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${kotlinVersion}"
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
maven { url 'https://maven.google.com' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task wrapper(type: Wrapper) {
gradleVersion = '4.2.1'
}
ext {
kotlin = "org.jetbrains.kotlin:kotlin-stdlib-jre7:${kotlinVersion}"
kotlinReflect = "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}"
rxJava = "io.reactivex.rxjava2:rxjava:2.1.5"
junit = "junit:junit:4.12"
assertk = "com.willowtreeapps.assertk:assertk:0.9"
mockitoKotlin = "com.nhaarman:mockito-kotlin:1.5.0"
}