Skip to content

Commit

Permalink
Fix double inclusion of some resources when generating GWT plugin
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Edwin Kempin committed Jul 14, 2015
1 parent c55ce1f commit 3bd2fd5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit 3bd2fd5

Please sign in to comment.