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:
@@ -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
-1
@@ -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>
|
||||||
Reference in New Issue
Block a user