Skip to content

Commit

Permalink
Add shade plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev committed Jul 8, 2016
1 parent c7251fa commit d83ec57
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pom-central.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,38 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/maven/**</exclude>
<exclude>META-INF/services/**</exclude>
<exclude>META-INF/COPYRIGHT.html</exclude>
<exclude>META-INF/LICENSE*</exclude>
<exclude>META-INF/NOTICE*</exclude>
<exclude>META-INF/README.txt</exclude>
<exclude>META-INF/DEPENDENCIES*</exclude>
<exclude>LICENSE.txt</exclude>
<exclude>rhinoDiff.txt</exclude>
<exclude>license/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit d83ec57

Please sign in to comment.