Hi,
I'm using GWT 2.6.0 with Maven, using the gwt-maven-plugin, and in my project I have some auto generated classes (using the <generated-with> directive on Module.gwt.xml). The generator is a subclass of com.google.gwt.core.ext.Generator.
The problem is: every time I build my project, Maven emits a warning:
[WARNING] Don't declare gwt-dev as a project dependency. This may introduce complex dependency conflicts
... but I have to declare gwt-dev as dependency, since I need it to compile my code generator.
I never faced any conflict - maybe because I'm declaring gwt-dev with the "provided" scope, avoiding it to be part of the generated war. So, in this scenario, is that warning still accurate? Is there any other way to avoid it (while still having the code generators)?
Thanks.