Skip to content

Commit 7c0b753

Browse files
committed
Raise the version of asm
The binary compatibility check fails for files compiled with the Java 9 bytecode or newer as the target. The new `asm` doesn't have this problem. This is part of the effort to support JDK11 because the main reason to upgrade to it is to allow for compilation with bytecode targets newer than 9.
1 parent 9206e80 commit 7c0b753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

binary-compatibility-validator/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ configurations {
88
}
99

1010
dependencies {
11-
compile 'org.ow2.asm:asm-debug-all:5.0.4'
11+
compile 'org.ow2.asm:asm-tree:7.3'
1212
compile 'com.google.code.gson:gson:2.6.2'
1313

1414
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"

0 commit comments

Comments
 (0)