Reenable GWT unit testing, using 2.8.0-SNAPSHOT.

This commit is contained in:
Michael Bayne
2015-09-21 14:34:57 -07:00
parent 4b713862c8
commit b9c48fa077
+13 -8
View File
@@ -41,17 +41,21 @@
<url>http://github.com/samskivert/jmustache</url> <url>http://github.com/samskivert/jmustache</url>
</scm> </scm>
<properties>
<gwt.version>2.8.0-SNAPSHOT</gwt.version>
</properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.google.gwt</groupId> <groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId> <artifactId>gwt-dev</artifactId>
<version>2.7.0</version> <version>${gwt.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.google.gwt</groupId> <groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId> <artifactId>gwt-user</artifactId>
<version>2.7.0</version> <version>${gwt.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
@@ -101,6 +105,9 @@
<arg>-Xlint:-serial</arg> <arg>-Xlint:-serial</arg>
<arg>-Xlint:-path</arg> <arg>-Xlint:-path</arg>
</compilerArgs> </compilerArgs>
<excludes>
<exclude>**/super/**</exclude>
</excludes>
</configuration> </configuration>
</plugin> </plugin>
@@ -119,14 +126,10 @@
</configuration> </configuration>
</plugin> </plugin>
<!-- disabled due to src/main/gwt related hoseage
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId> <artifactId>gwt-maven-plugin</artifactId>
<version>2.7.0</version> <version>${gwt.version}</version>
<configuration>
<mode>htmlunit</mode>
</configuration>
<executions> <executions>
<execution> <execution>
<goals> <goals>
@@ -134,8 +137,10 @@
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration>
<mode>htmlunit</mode>
</configuration>
</plugin> </plugin>
-->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>