There are two solutions:
1st) Add gwt.compiler.skip = true to your Maven command line
mvn -Dgwt.compiler.skip=true package
2nd) Comment on the purpose of compiling the gwt-maven-plugin plugin in the pom.xml file
[...] <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> [...] <executions> <execution> <configuration> [...] </configuration> <goals> </goals> </execution> </executions> </plugin> [...]
STB Land
source share