Skip to content

Commit ff6beda

Browse files
Update dependency org.ow2.asm:asm to v9.9.1 (#214)
1 parent 5a072ab commit ff6beda

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version = "1.13.1"
22

3-
dependencies { implementation("org.ow2.asm:asm:9.9") }
3+
dependencies { implementation("org.ow2.asm:asm:9.9.1") }
44

55
publishingConventions {
66
pluginPortal("${project.group}.${project.name}") {
@@ -19,6 +19,10 @@ publishingConventions {
1919

2020
testingConventions { testGradleVersions("6.8.3", "6.9.4", "7.6.5", "8.14.2") }
2121

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+
2226
// === the following custom configuration should be removed once tests are migrated to Java
2327
apply(plugin = "groovy")
2428

0 commit comments

Comments
 (0)