21 lines
346 B
Groovy
21 lines
346 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = 'UTF-8'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.squareup.okhttp3:okhttp:3.12.13'
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
} |