We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 430e89e commit 81326feCopy full SHA for 81326fe
1 file changed
build.gradle.kts
@@ -19,6 +19,10 @@ publishingConventions {
19
20
testingConventions { testGradleVersions("6.8.3", "6.9.4", "7.6.5", "8.14.2") }
21
22
+// Turn off classfile lint as long as we still compile with Java 8
23
+// /org/objectweb/asm/ClassReader.class: Cannot find annotation method 'forRemoval()' in type 'Deprecated'
24
+tasks.compileJava { options.compilerArgs.add("-Xlint:-classfile") }
25
+
26
// === the following custom configuration should be removed once tests are migrated to Java
27
apply(plugin = "groovy")
28
0 commit comments