Update kotlin to 1.1.3-2 version.
Also have to update jackson to 2.9.0 that uses the same kotlin version. Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
This commit is contained in:
parent
3c4f91efef
commit
d66556e307
|
@ -14,10 +14,10 @@ ext.versions = [
|
|||
|
||||
androidSupport : "22.2.1",
|
||||
|
||||
kotlin : "1.1.2-5",
|
||||
kotlin : "1.1.3-2",
|
||||
|
||||
retrofit : "2.1.0",
|
||||
jackson : "2.8.7",
|
||||
jackson : "2.9.0",
|
||||
okhttp : "3.6.0",
|
||||
|
||||
junit : "4.12",
|
||||
|
@ -41,6 +41,7 @@ ext.androidSupport = [
|
|||
|
||||
ext.other = [
|
||||
kotlinStdlib : "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlin",
|
||||
kotlinReflect : "org.jetbrains.kotlin:kotlin-reflect:$versions.kotlin",
|
||||
retrofit : "com.squareup.retrofit2:retrofit:$versions.retrofit",
|
||||
gsonConverter : "com.squareup.retrofit2:converter-gson:$versions.retrofit",
|
||||
jacksonConverter : "com.squareup.retrofit2:converter-jackson:$versions.retrofit",
|
||||
|
@ -51,7 +52,6 @@ ext.other = [
|
|||
ext.testing = [
|
||||
junit : "junit:junit:$versions.junit",
|
||||
kotlinJunit : "org.jetbrains.kotlin:kotlin-test-junit:$versions.kotlin",
|
||||
kotlinReflect : "org.jetbrains.kotlin:kotlin-reflect:$versions.kotlin",
|
||||
mockitoKotlin : "com.nhaarman:mockito-kotlin:$versions.mockitoKotlin",
|
||||
kluent : "org.amshove.kluent:kluent:$versions.kluent",
|
||||
mockWebServer : "com.squareup.okhttp3:mockwebserver:$versions.okhttp",
|
||||
|
|
|
@ -13,12 +13,14 @@ dependencies {
|
|||
compile other.kotlinStdlib
|
||||
compile other.retrofit
|
||||
compile other.jacksonConverter
|
||||
compile other.jacksonKotlin
|
||||
compile(other.jacksonKotlin) {
|
||||
exclude module: 'kotlin-reflect'
|
||||
}
|
||||
compile other.kotlinReflect // for jackson kotlin, but to use the same version
|
||||
compile other.okhttpLogging
|
||||
|
||||
testCompile testing.junit
|
||||
testCompile testing.kotlinJunit
|
||||
testCompile testing.kotlinReflect
|
||||
testCompile testing.mockitoKotlin
|
||||
testCompile testing.kluent
|
||||
testCompile testing.mockWebServer
|
||||
|
|
|
@ -53,17 +53,9 @@ dependencies {
|
|||
compile other.kotlinStdlib
|
||||
|
||||
testCompile testing.junit
|
||||
testCompile(testing.kotlinJunit) {
|
||||
exclude module: "kotlin-stdlib"
|
||||
}
|
||||
testCompile(testing.mockitoKotlin) {
|
||||
exclude module: "kotlin-stdlib"
|
||||
exclude module: "kotlin-reflect"
|
||||
}
|
||||
testCompile(testing.kluent) {
|
||||
exclude module: "kotlin-stdlib"
|
||||
exclude module: "kotlin-reflect"
|
||||
}
|
||||
testCompile testing.kotlinJunit
|
||||
testCompile testing.mockitoKotlin
|
||||
testCompile testing.kluent
|
||||
}
|
||||
|
||||
// Excluding all non-kotlin classes
|
||||
|
|
Loading…
Reference in New Issue