2017-02-21 17:46:24 +01:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
2017-03-02 06:37:51 +01:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
test.java.srcDirs += 'src/integrationTest/kotlin'
|
|
|
|
test.resources.srcDirs += 'src/integrationTest/resources'
|
|
|
|
test.output.resourcesDir = test.output.classesDir
|
|
|
|
}
|
|
|
|
|
2017-02-21 17:46:24 +01:00
|
|
|
dependencies {
|
2017-04-01 18:40:14 +02:00
|
|
|
compile other.kotlinStdlib
|
2017-03-02 06:37:51 +01:00
|
|
|
compile other.retrofit
|
2017-04-01 18:40:14 +02:00
|
|
|
compile other.jacksonConverter
|
|
|
|
compile other.jacksonKotlin
|
2017-02-21 17:46:24 +01:00
|
|
|
|
|
|
|
testCompile testing.junit
|
|
|
|
testCompile testing.kotlinJunit
|
|
|
|
testCompile testing.mockitoKotlin
|
|
|
|
testCompile testing.kluent
|
2017-03-02 06:37:51 +01:00
|
|
|
testCompile testing.mockWebServer
|
|
|
|
}
|