Changes between Version 7 and Version 8 of Devel/GWTwithMaven


Ignore:
Timestamp:
10/03/07 15:07:30 (18 years ago)
Author:
leo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Devel/GWTwithMaven

    v7 v8  
    2222   * use the following setting within build/plugins tag
    2323{{{
    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>
    4847}}}
    4948