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> </dependencies>
<build> <build>
<!-- we include the source files in our main jar for use by GWT -->
<resources> <resources>
<!-- include the source files in our main jar for use by GWT -->
<resource> <resource>
<directory>${project.build.sourceDirectory}</directory> <directory>${project.build.sourceDirectory}</directory>
<excludes> <excludes>
<exclude>com/samskivert/mustache/DefaultCollector.java</exclude> <exclude>com/samskivert/mustache/DefaultCollector.java</exclude>
</excludes> </excludes>
</resource> </resource>
<!-- also include the GWT-specific sources -->
<resource>
<directory>src/main/gwt</directory>
</resource>
</resources> </resources>
<plugins> <plugins>
@@ -95,9 +99,6 @@
<arg>-Xlint:-serial</arg> <arg>-Xlint:-serial</arg>
<arg>-Xlint:-path</arg> <arg>-Xlint:-path</arg>
</compilerArgs> </compilerArgs>
<excludes>
<exclude>com/samskivert/gwt/**</exclude>
</excludes>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
@@ -152,9 +153,6 @@
<configuration> <configuration>
<quiet>true</quiet> <quiet>true</quiet>
<show>public</show> <show>public</show>
<sourceFileExcludes>
<exclude>com/samskivert/gwt/**</exclude>
</sourceFileExcludes>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
@@ -1,5 +1,5 @@
<!-- defines our GWT module --> <!-- defines our GWT module -->
<module> <module>
<source path="mustache"/> <source path="mustache"/>
<super-source path="gwt"/> <super-source path="super"/>
</module> </module>