Skip to content

Commit f20ff04

Browse files
Fix build.gradle.kts tasks.withType<JavaCompile>
1 parent 53ed2f3 commit f20ff04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ tasks.jacocoTestReport {
9292
}
9393
}
9494

95-
tasks.withType<JavaCompile>() {
96-
// "--warning-mode all",
97-
options.compilerArgs.addAll(listOf("-Xlint:deprecation", "-Xlint:unchecked"))
98-
}
95+
//tasks.withType<JavaCompile>() {
96+
// // "--warning-mode all",
97+
// options.compilerArgs.addAll(listOf("-Xlint:deprecation", "-Xlint:unchecked"))
98+
//}
9999

100100
tasks.withType<Test> {
101101
useJUnitPlatform()

0 commit comments

Comments
 (0)