1
0
mirror of https://github.com/foobnix/LibreraReader.git synced 2025-10-06 00:02:43 +02:00
Files
LibreraReader/libReflow/build.gradle
Ivan Ivanenko db7cd14428 refactoring
2025-08-06 14:26:15 +03:00

15 lines
320 B
Groovy

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'])
}