You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
702 B
24 lines
702 B
apply plugin: 'java' |
|
apply plugin: 'kotlin' |
|
|
|
dependencies { |
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version" |
|
compile 'com.squareup.okhttp3:logging-interceptor:3.7.0' |
|
compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0' |
|
compile 'com.burgstaller:okhttp-digest:1.10' |
|
compile 'com.github.erickok:retrofit-xmlrpc:6e2c623763' |
|
|
|
testCompile 'junit:junit:4.12' |
|
testCompile 'com.google.truth:truth:0.31' |
|
testCompile 'com.squareup.okhttp3:mockwebserver:3.7.0' |
|
} |
|
|
|
buildscript { |
|
ext.kotlin_version = '1.1.1' |
|
repositories { |
|
mavenCentral() |
|
} |
|
dependencies { |
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
} |
|
} |