Move our GWT stuff around.

This avoids having it look like normal Java source and then confusing tools
because there are two copies of DefaultCollector.
This commit is contained in:
Michael Bayne
2014-12-01 16:46:51 -08:00
parent 614bb82b17
commit 692adc47f4
7 changed files with 6 additions and 8 deletions
+5 -7
View File
@@ -69,14 +69,18 @@
</dependencies>
<build>
<!-- we include the source files in our main jar for use by GWT -->
<resources>
<!-- include the source files in our main jar for use by GWT -->
<resource>
<directory>${project.build.sourceDirectory}</directory>
<excludes>
<exclude>com/samskivert/mustache/DefaultCollector.java</exclude>
</excludes>
</resource>
<!-- also include the GWT-specific sources -->
<resource>
<directory>src/main/gwt</directory>
</resource>
</resources>
<plugins>
@@ -95,9 +99,6 @@
<arg>-Xlint:-serial</arg>
<arg>-Xlint:-path</arg>
</compilerArgs>
<excludes>
<exclude>com/samskivert/gwt/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
@@ -152,9 +153,6 @@
<configuration>
<quiet>true</quiet>
<show>public</show>
<sourceFileExcludes>
<exclude>com/samskivert/gwt/**</exclude>
</sourceFileExcludes>
</configuration>
</plugin>
<plugin>
@@ -1,5 +1,5 @@
<!-- defines our GWT module -->
<module>
<source path="mustache"/>
<super-source path="gwt"/>
<super-source path="super"/>
</module>