Own-Programming-Language-Tu.../build.gradle

13 lines
313 B
Groovy
Raw Normal View History

2023-08-26 15:59:36 +03:00
allprojects {
repositories {
mavenCentral()
2019-05-22 19:10:48 +03:00
}
2023-08-26 15:59:36 +03:00
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
2019-05-22 19:10:48 +03:00
}
}