mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-05-05 01:51:06 +03:00
25 lines
727 B
Groovy
25 lines
727 B
Groovy
apply plugin: 'kotlin'
|
|
apply from: '../gradle_scripts/code_quality.gradle'
|
|
|
|
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 other.kotlinStdlib
|
|
compile other.retrofit
|
|
compile other.jacksonConverter
|
|
compile other.jacksonKotlin
|
|
compile other.okhttpLogging
|
|
|
|
testCompile testing.junit
|
|
testCompile testing.kotlinJunit
|
|
testCompile testing.kotlinReflect
|
|
testCompile testing.mockitoKotlin
|
|
testCompile testing.kluent
|
|
testCompile testing.mockWebServer
|
|
testCompile testing.apacheCodecs
|
|
} |