Skip to content

Instantly share code, notes, and snippets.

@bulain
Created October 14, 2011 01:28
Show Gist options
  • Save bulain/1286020 to your computer and use it in GitHub Desktop.
Save bulain/1286020 to your computer and use it in GitHub Desktop.
excludes some file when package using maven
<!-- pom.xml -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>*.properties</exclude>
</excludes>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment