We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24f425d commit 4af4625Copy full SHA for 4af4625
1 file changed
modules/examples/pom.xml
@@ -48,6 +48,27 @@
48
<plugin>
49
<groupId>org.apache.maven.plugins</groupId>
50
<artifactId>maven-shade-plugin</artifactId>
51
+ <executions>
52
+ <execution>
53
+ <phase>package</phase>
54
+ <goals>
55
+ <goal>shade</goal>
56
+ </goals>
57
+ <configuration>
58
+ <minimizeJar>true</minimizeJar>
59
+ <filters>
60
+ <filter>
61
+ <artifact>*:*</artifact>
62
+ <excludes>
63
+ <exclude>META-INF/*.SF</exclude>
64
+ <exclude>META-INF/*.DSA</exclude>
65
+ <exclude>META-INF/*.RSA</exclude>
66
+ </excludes>
67
+ </filter>
68
+ </filters>
69
+ </configuration>
70
+ </execution>
71
+ </executions>
72
</plugin>
73
74
0 commit comments