Move GWT source out of src/main/java.

Also updated maven-compiler-plugin to newer less crack-smokey version.
This commit is contained in:
Michael Bayne
2015-01-15 13:50:37 -08:00
parent f513fc2acc
commit ce42c01f45
2 changed files with 12 additions and 6 deletions
+12 -6
View File
@@ -58,23 +58,29 @@
<exclude>pythagoras/util/Platform.java</exclude> <exclude>pythagoras/util/Platform.java</exclude>
</excludes> </excludes>
</resource> </resource>
<resource>
<directory>${basedir}/src/gwt/java</directory>
<includes>
<include>**/*.java</include>
</includes>
</resource>
</resources> </resources>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version> <version>3.1</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
<target>1.6</target> <target>1.6</target>
<fork>true</fork> <fork>true</fork>
<showDeprecation>true</showDeprecation> <showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings> <showWarnings>true</showWarnings>
<!-- yes, this is apparently the Right Way to do this --> <compilerArgs>
<compilerArgument>-Xlint" "-Xlint:-serial" "-Xlint:-path</compilerArgument> <arg>-Xlint</arg>
<excludes> <arg>-Xlint:-serial</arg>
<exclude>pythagoras/gwt/**</exclude> <arg>-Xlint:-path</arg>
</excludes> </compilerArgs>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>