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>
</excludes>
</resource>
<resource>
<directory>${basedir}/src/gwt/java</directory>
<includes>
<include>**/*.java</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<fork>true</fork>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<!-- yes, this is apparently the Right Way to do this -->
<compilerArgument>-Xlint" "-Xlint:-serial" "-Xlint:-path</compilerArgument>
<excludes>
<exclude>pythagoras/gwt/**</exclude>
</excludes>
<compilerArgs>
<arg>-Xlint</arg>
<arg>-Xlint:-serial</arg>
<arg>-Xlint:-path</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>