mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-04-12 23:47:16 +03:00
21 lines
529 B
Groovy
21 lines
529 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
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
|
|
}
|
|
|
|
dependencies {
|
|
compile kotlin.stdlib
|
|
|
|
compile other.retrofit
|
|
compile other.gsonConverter
|
|
|
|
testCompile testing.junit
|
|
testCompile testing.kotlinJunit
|
|
testCompile testing.mockitoKotlin
|
|
testCompile testing.kluent
|
|
testCompile testing.mockWebServer
|
|
} |