14 lines
324 B
Groovy
14 lines
324 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
implementation 'com.google.guava:guava:33.2.1-jre'
|
|
implementation 'com.google.code.gson:gson:2.11.0'
|
|
} |