Introduced a new profile named debug.no-gwt-compile that makes it possible to execute build w/o compiling gwt sources

This commit is contained in:
Simon Pamies
2013-01-11 14:05:17 +01:00
parent a193d83e9a
commit a4ee4d9c91
+28
View File
@@ -66,4 +66,32 @@
</plugins>
</build>
<profiles>
<profile>
<id>debug.no-gwt-compile</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<configuration>
<modules>
<!-- Without a single entry Maven ignores whole tree -->
<module>FAIL-INTENTIONALLY</module>
</modules>
</configuration>
<goals>
<goal>help</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>