Skip to content

Commit 4af4625

Browse files
committed
fix: restore maven-shade config on example
1 parent 24f425d commit 4af4625

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

modules/examples/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,27 @@
4848
<plugin>
4949
<groupId>org.apache.maven.plugins</groupId>
5050
<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>
5172
</plugin>
5273
<plugin>
5374
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)