Skip to content

Commit 39b2cf7

Browse files
committed
Add shade plugin to the undescore-string.
1 parent 1c260e7 commit 39b2cf7

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

string-plugin/pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,38 @@
6868
</archive>
6969
</configuration>
7070
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-shade-plugin</artifactId>
74+
<version>1.4</version>
75+
<executions>
76+
<execution>
77+
<phase>package</phase>
78+
<goals>
79+
<goal>shade</goal>
80+
</goals>
81+
<configuration>
82+
<filters>
83+
<filter>
84+
<artifact>*:*</artifact>
85+
<excludes>
86+
<exclude>META-INF/maven/**</exclude>
87+
<exclude>META-INF/services/**</exclude>
88+
<exclude>META-INF/COPYRIGHT.html</exclude>
89+
<exclude>META-INF/LICENSE*</exclude>
90+
<exclude>META-INF/NOTICE*</exclude>
91+
<exclude>META-INF/README.txt</exclude>
92+
<exclude>META-INF/DEPENDENCIES*</exclude>
93+
<exclude>LICENSE.txt</exclude>
94+
<exclude>rhinoDiff.txt</exclude>
95+
<exclude>license/**</exclude>
96+
</excludes>
97+
</filter>
98+
</filters>
99+
</configuration>
100+
</execution>
101+
</executions>
102+
</plugin>
71103
<plugin>
72104
<groupId>org.apache.maven.plugins</groupId>
73105
<artifactId>maven-checkstyle-plugin</artifactId>
62.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)