1
0
mirror of https://github.com/ultrasonic/ultrasonic synced 2025-01-23 05:33:12 +01:00
ultrasonic-app-subsonic-and.../subsonic-api/build.gradle
Yahor Berdnikau cfa90e0a8d Switched to using Jackson for json parsing.
Also changed how response is parsed, allowing base response has different models to parse.

Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
2017-07-19 17:02:47 +02:00

21 lines
568 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 other.kotlinStdlib
compile other.retrofit
compile other.jacksonConverter
compile other.jacksonKotlin
testCompile testing.junit
testCompile testing.kotlinJunit
testCompile testing.mockitoKotlin
testCompile testing.kluent
testCompile testing.mockWebServer
}