Skip to content

Commit fa8f5ee

Browse files
committed
use shade to incorporate dependencies
1 parent 3f9e3dc commit fa8f5ee

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,26 @@
9090
</execution>
9191
</executions>
9292
</plugin>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-shade-plugin</artifactId>
96+
<version>2.1</version>
97+
<executions>
98+
<execution>
99+
<phase>package</phase>
100+
<goals>
101+
<goal>shade</goal>
102+
</goals>
103+
<configuration>
104+
<transformers>
105+
<transformer
106+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
107+
</transformer>
108+
</transformers>
109+
</configuration>
110+
</execution>
111+
</executions>
112+
</plugin>
93113
</plugins>
94114
</build>
95115
</project>

0 commit comments

Comments
 (0)