Smartgwt Pro 13.0-d20200824, GWT 2.9.0
Have a strange issue. I have a working project with the above versions. Started trying to use "schemabean" in a ds. Had to add isomorphic-tools as a maven dependency on the project. This results in me unable to run the project. I get the error below and Jetty exits. I remove the jar-file and it starts working again.
I have no idea what it means, you got any thoughts?
Have a strange issue. I have a working project with the above versions. Started trying to use "schemabean" in a ds. Had to add isomorphic-tools as a maven dependency on the project. This results in me unable to run the project. I get the error below and Jetty exits. I remove the jar-file and it starts working again.
I have no idea what it means, you got any thoughts?
Code:
java.lang.IncompatibleClassChangeError: class com.google.gwt.dev.javac.BytecodeSignatureMaker$CompileDependencyVisitor has interface org.objectweb.asm.ClassVisitor as super class at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:756) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:468) at java.net.URLClassLoader.access$100(URLClassLoader.java:74) at java.net.URLClassLoader$1.run(URLClassLoader.java:369) at java.net.URLClassLoader$1.run(URLClassLoader.java:363) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:362) at java.lang.ClassLoader.loadClass(ClassLoader.java:418) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352) at java.lang.ClassLoader.loadClass(ClassLoader.java:351) at com.google.gwt.dev.javac.BytecodeSignatureMaker.visitCompileDependenciesInBytecode(BytecodeSignatureMaker.java:227) at com.google.gwt.dev.javac.BytecodeSignatureMaker.getCompileDependencySignature(BytecodeSignatureMaker.java:209) at com.google.gwt.dev.javac.CompiledClass.getSignatureHash(CompiledClass.java:166) at com.google.gwt.dev.javac.Dependencies$Ref.<init>(Dependencies.java:41) at com.google.gwt.dev.javac.Dependencies$Ref.<init>(Dependencies.java:36) at com.google.gwt.dev.javac.Dependencies.resolve(Dependencies.java:100) at com.google.gwt.dev.javac.CompilationStateBuilder$CompileMoreLater.compile(CompilationStateBuilder.java:349) at com.google.gwt.dev.javac.CompilationStateBuilder.doBuildFrom(CompilationStateBuilder.java:532) at com.google.gwt.dev.javac.CompilationStateBuilder.buildFrom(CompilationStateBuilder.java:464) at com.google.gwt.dev.cfg.ModuleDef.getCompilationState(ModuleDef.java:423) at com.google.gwt.dev.codeserver.Recompiler.initWithoutPrecompile(Recompiler.java:213) at com.google.gwt.dev.codeserver.Outbox.maybePrecompile(Outbox.java:89) at com.google.gwt.dev.codeserver.Outbox.<init>(Outbox.java:61) at com.google.gwt.dev.codeserver.CodeServer.makeOutboxTable(CodeServer.java:192) at com.google.gwt.dev.codeserver.CodeServer.start(CodeServer.java:151) at com.google.gwt.dev.codeserver.CodeServer.main(CodeServer.java:104) at com.google.gwt.dev.codeserver.CodeServer.main(CodeServer.java:55) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.gwt.dev.shell.SuperDevListener.runCodeServer(SuperDevListener.java:112) at com.google.gwt.dev.shell.SuperDevListener.start(SuperDevListener.java:91) at com.google.gwt.dev.DevMode.ensureCodeServerListener(DevMode.java:666) at com.google.gwt.dev.DevModeBase.doStartup(DevModeBase.java:785) at com.google.gwt.dev.DevMode.doStartup(DevMode.java:551) at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:888) at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:705) at com.google.gwt.dev.DevMode.main(DevMode.java:432)
Comment