Skip to content

Commit

Permalink
it.launcher: don't build empty jars
Browse files Browse the repository at this point in the history
Fixes #3: Warnings when building project
  • Loading branch information
rombert committed Feb 20, 2015
1 parent 39f4886 commit 7435bf3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/main/archetype/it.launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,14 @@
</filesets>
</configuration>
</plugin>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<skipIfEmpty>true</skipIfEmpty>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
Expand Down
6 changes: 6 additions & 0 deletions src/main/archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- Maven Jar Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<!-- Maven Enforcer Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 7435bf3

Please sign in to comment.