20 lines
No EOL
443 B
Groovy
20 lines
No EOL
443 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'kotlin'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
api project(":model")
|
|
|
|
api "com.squareup.okhttp3:mockwebserver:$okhttp_version"
|
|
api "com.squareup.okhttp3:okhttp-tls:$okhttp_version"
|
|
|
|
implementation "org.skyscreamer:jsonassert:$json_assert_version"
|
|
implementation "junit:junit:$junit4_version"
|
|
|
|
} |