I have moved this and future posts related to
org.codehaus.mojo:gwt-maven-plugin to the more focused mailing list
here:
<http://groups.google.com/group/codehaus-mojo-gwt-maven-plugin-users>
Please reply on that list rather than this one. Thanks.
Farrukh Najmi wrote:
It weird. Since yesterday I do not believe I have changed any code but
all of a sudden the gwt:run goal is no longer running my server code. I
also see that gwt:run is creating a src/test/hosted directory when I
expected that it should not. Has there been any changes in the plugin
that I should be aware of?
I am dead in the water with this issue and would be grateful to get
some help to dig out of it. Thanks.
Recall that I am overriding the default configuration for generated
output so as to not pollute the source tree (see below).
<build>
<outputDirectory>${basedir}/target/${pom.artifactId}-${pom.version}/WEB-INF/classes</outputDirectory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.1-SNAPSHOT</version>
<configuration>
<output>${basedir}/target/${pom.artifactId}-${pom.version}</output>
<module>com.wellfleetsoftware.gis.gui.gwt.GUIApp</module>
<runTarget>com.wellfleetsoftware.gis.gui.gwt.GUIApp/GUI.html</runTarget>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugins>
src/test/hosted
--
Regards,
Farrukh
Web: http://www.wellfleetsoftware.com
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
--
Regards,
Farrukh
Web: http://www.wellfleetsoftware.com
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
|