Open pedromartins4 opened 6 years ago
Hi @pedromartins4,
It looks like it is "bug" in the way that we build asm-5.1
. If compiling with java9 is important then I recommend doing something like this, until I get around to build a more sustainable solution:
diff --git a/lib/asm-5.1/build.xml b/lib/asm-5.1/build.xml
index 1ff25a6..60882a8 100644
--- a/lib/asm-5.1/build.xml
+++ b/lib/asm-5.1/build.xml
@@ -180,7 +180,7 @@
</target>
<target name="compile-debug" depends="init,compile-init,compile-config">
- <javac destdir="${out.build}/tmp" debug="on" source="1.5" target="1.5">
+ <javac destdir="${out.build}/tmp" debug="on">
<classpath>
<pathelement location="${out.build}/tmp" />
</classpath>
Produces the following error:
the solution was to build the jar file with Java 8, which produces the respective warnings: