Treader-open/libReflow/build.gradle

15 lines
320 B
Groovy
Raw Normal View History

2026-02-10 19:01:19 +08:00
apply plugin: 'java-library'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}