Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version = "1.13.1"

dependencies { implementation("org.ow2.asm:asm:9.9") }
dependencies { implementation("org.ow2.asm:asm:9.9.1") }

publishingConventions {
pluginPortal("${project.group}.${project.name}") {
Expand All @@ -19,6 +19,10 @@ publishingConventions {

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

// Turn off classfile lint as long as we still compile with Java 8
// /org/objectweb/asm/ClassReader.class: Cannot find annotation method 'forRemoval()' in type 'Deprecated'
tasks.compileJava { options.compilerArgs.add("-Xlint:-classfile") }

// === the following custom configuration should be removed once tests are migrated to Java
apply(plugin = "groovy")

Expand Down
Loading