24 | | <!-- GWT compiler --> |
25 | | <plugin> |
26 | | <artifactId>maven-antrun-plugin</artifactId> |
27 | | <executions> |
28 | | <execution> |
29 | | <phase>compile</phase> |
30 | | <configuration> |
31 | | <tasks> |
32 | | <property name="classpath.compile" refid="maven.compile.classpath" /> |
33 | | <property name="gwt.dev" value="${gwt.dev}" /> |
34 | | <property name="gwt.jvmargs" value="${gwt.jvmargs}" /> |
35 | | <ant antfile="gwt-home/build-gwt.xml"> |
36 | | <property name="gwt.module" value="${gwt.module}" /> |
37 | | <target name="compile" /> |
38 | | </ant> |
39 | | </tasks> |
40 | | </configuration> |
41 | | <goals> |
42 | | <goal>run</goal> |
43 | | </goals> |
44 | | </execution> |
45 | | </executions> |
46 | | </plugin> |
47 | | |
| 24 | <!-- GWT compiler --> |
| 25 | <plugin> |
| 26 | <artifactId>maven-antrun-plugin</artifactId> |
| 27 | <executions> |
| 28 | <execution> |
| 29 | <phase>compile</phase> |
| 30 | <configuration> |
| 31 | <tasks> |
| 32 | <property name="classpath.compile" refid="maven.compile.classpath" /> |
| 33 | <property name="gwt.dev" value="${gwt.dev}" /> |
| 34 | <property name="gwt.jvmargs" value="${gwt.jvmargs}" /> |
| 35 | <ant antfile="gwt-home/build-gwt.xml"> |
| 36 | <property name="gwt.module" value="${gwt.module}" /> |
| 37 | <target name="compile" /> |
| 38 | </ant> |
| 39 | </tasks> |
| 40 | </configuration> |
| 41 | <goals> |
| 42 | <goal>run</goal> |
| 43 | </goals> |
| 44 | </execution> |
| 45 | </executions> |
| 46 | </plugin> |