forked from JakeWharton/RxBinding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
45 lines (38 loc) · 1.68 KB
/
dependencies.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
ext {
androidPlugin = 'com.android.tools.build:gradle:2.2.2'
minSdkVersion = 14
compileSdkVersion = 25
buildToolsVersion = '25.0.1'
ci = 'true'.equals(System.getenv('CI'))
kotlinPlugin = 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.4-3'
kotlinStdlib = 'org.jetbrains.kotlin:kotlin-stdlib:1.1.4-3'
kotlinPoet = 'com.squareup:kotlinpoet:0.4.0'
supportVersion = '25.1.1'
supportAnnotations = "com.android.support:support-annotations:$supportVersion"
supportV4CoreUi = "com.android.support:support-core-ui:$supportVersion"
supportRecyclerView = "com.android.support:recyclerview-v7:$supportVersion"
supportAppCompat = "com.android.support:appcompat-v7:$supportVersion"
supportDesign = "com.android.support:design:$supportVersion"
supportLeanback = "com.android.support:leanback-v17:$supportVersion"
autoValue = 'com.google.auto.value:auto-value:1.3'
autoValueAnnotations = 'com.jakewharton.auto.value:auto-value-annotations:1.3'
supportTestRunner = 'com.android.support.test:runner:0.5'
supportTestRules = 'com.android.support.test:rules:0.5'
supportTestEspresso = 'com.android.support.test.espresso:espresso-core:2.2.1'
supportTestEspressoContrib = 'com.android.support.test.espresso:espresso-contrib:2.2.1'
rxJava = 'io.reactivex.rxjava2:rxjava:2.0.2'
rxAndroid = 'io.reactivex.rxjava2:rxandroid:2.0.0'
junit = 'junit:junit:4.12'
javaParser = 'com.github.javaparser:javaparser-core:2.5.1'
}
subprojects { project ->
project.configurations.all {
resolutionStrategy {
eachDependency { details ->
if (details.requested.group == 'com.android.support') {
details.useVersion(rootProject.ext.supportVersion)
}
}
}
}
}