Re: [ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-09 Thread Michael Conrad
Thanks for the assistance. After poking around a bit, I removed the dependency and switched to using Element2 for websock work. On Fri, Aug 5, 2022 at 11:41 AM Jens wrote: > GWT (gwt-dev) depends on ASM 9.2 which supports up to Java 18. On your > compile classpath you have gwt-websockets which

Re: [ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-05 Thread Jens
GWT (gwt-dev) depends on ASM 9.2 which supports up to Java 18. On your compile classpath you have gwt-websockets which depends on ASM 5.x. Seems like that ASM version is used during GWT compilation. ASM's ClassVisitor constructor checks the byte code version of the class file and if it is too

[ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-03 Thread Michael Conrad
Trying to update to gwt 2.10.0, have it mostly figured out, but I'm getting the following stack trace. Any suggestions on what I need to look for? I've already did the exclude module's thing on multiple dependencies to keep gwt 2.8 stuff out of the classpath. There is no GWT servlet stuff.