I'm trying to deploy to Java8 and I keep getting below exception.
I'm trying cglib 3.2.5 and ASM 5.2 jars but has not worked.
I have checked ASM classwriter does not have a Boolean constructor ClassWriter.<init>(Z)V
so am not sure why it's going this way.
Is there any way forward that I can run it in JDK8.
Caused By: java.lang.NoSuchMethodError: .objectweb.asm.ClassWriter.<init>(Z)V
at net.sf.cglib.core.DebuggingClassWriter.<init>(DebuggingClassWriter.java:47)
at net.sf.cglib.core.DefaultGeneratorStrategy.getClassWriter(DefaultGeneratorStrategy.java:30)
at net.sf.cglib.core.DefaultGeneratorStrategy.generate(DefaultGeneratorStrategy.java:24)
at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:216)
at net.sf.cglib.core.KeyFactory$Generator.create(KeyFactory.java:145)
Truncated.