The previous GWT version I was using was 2.11, and the only changes I made was adding javax.servlet-api, gwt-dev, and the new maven plugin,
<plugin> <groupId>net.ltgt.gwt.maven</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>1.1.0</version> <extensions>true</extensions> <executions> <execution> <goals> <goal>compile</goal> <goal>test</goal> </goals> </execution> </executions> <configuration> <moduleName>com.infoshare.clearcore.ClearCore</moduleName> </configuration> </plugin> Having had a quick look through the source code of both the old and new plugins, it seem the new plugin does not support the "generateAsync" option that the old one did, and which generated the required Async code. Was this a deliberate choice, and is there some way I can actually generate this code? Simon On Wednesday, April 23, 2025 at 4:31:06 PM UTC+1 Colin Alworth wrote: > Can you confirm what version of GWT last successfully worked for you? Did > you change anything else at the same time? > > The GWT 2.12.2 release changed very little over 2.12.1, so it seems likely > that you made bigger changes than just this version bump. From the issue > tracker, the old gwt-maven-plugin didnt work with GWT 2.11 either, so > likely you changed from GWT 2.10 (or older), and possibly made other > changes too? > > What happens if you directly run the generateAsync goal, are there log > messages that might give hints here? > > On Wednesday, April 23, 2025 at 8:20:39 AM UTC-5 > simon....@infoshare-is.com wrote: > >> With the release of GWT 2.12, the old (legacy) GWT maven plugin has >> stopped working, and I need to migrate to the new (tbroyer?) plugin. >> >> As a result of this change, I am getting a lot of "cannot find symbol" >> errors: >> >> cannot find symbol >> symbol: class CCServiceAsync >> location: package com.infoshare.clearcore.client.services >> >> These appear to be the asynchronous services that the client uses to >> contact the backend, and that I think were previously generated by the >> "generateAsync" goal. >> >> How do I get rid of these errors? >> >> Simon >> > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/google-web-toolkit/677aa112-9dfa-41b7-951e-89b257a7162an%40googlegroups.com.