-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (45 loc) · 1.24 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = "1.1.4-2"
repositories {
jcenter()
google()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "gradle.plugin.org.jlleitschuh.gradle:ktlint-gradle:2.1.1"
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
supportLibVersion = "26.0.1"
archLifecycleVersion = "1.0.0-alpha1"
archRoomVersion = "1.0.0-alpha9"
rxJavaVersion = "2.1.3"
rxAndroidVersion = "2.0.1"
rxbindingVersion = "2.0.0"
butterknifeVersion = "8.8.1"
daggerVersion = "2.11"
timberKtVersion = "1.3.0"
threetenabpVersion = "1.0.5"
// Tests
junitVersion = "4.12"
assertjVersion = "3.8.0"
mockitoVersion = "2.8.47"
mockitoKotlinVersion = "1.5.0"
// Instrumented Tests
espressoVersion = "2.2.2"
}
apply plugin: "org.jlleitschuh.gradle.ktlint"