Fix double inclusion of some resources when generating GWT plugin

When generating a GWT plugin with the GWT plugin archetype the
following resources were included twice:

* HelloPlugin.gwt.xml
* public/hello.css
* client/

As expected they are copied to

  src/main/java/com/googlesource/gerrit/plugins/<plugin-name>/

but in addition they also wrongly appeared under

  src/main/java/

Change-Id: Iabb8a38d86e22726a46b60bf9737ca4310ccf307
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin 2015-07-14 15:21:48 +02:00
parent c55ce1f6df
commit 3bd2fd5d01

View File

@ -59,7 +59,12 @@ limitations under the License.
<include>lib/gerrit/BUCK</include>
<include>lib/gwt/BUCK</include>
<excludes>
<exclude>**/client/</exclude>
<exclude>**/public/</exclude>
<exclude>**/*.css</exclude>
<exclude>**/*.png</exclude>
<exclude>**/*.java</exclude>
<exclude>**/*.gwt.xml</exclude>
</excludes>
</fileSet>