Skip to content

Commit

Permalink
Update pom.xml (#26)
Browse files Browse the repository at this point in the history
Fix java.lang.SecurityException on jar starting
  • Loading branch information
AleksCee authored Dec 30, 2020
1 parent 86e80fd commit 1799f80
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@
<configuration>
<finalName>miele-to-mqtt-gw</finalName>
<shadedArtifactAttached>true</shadedArtifactAttached>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>de.rnd7.mieletomqtt.Main</mainClass>
Expand Down Expand Up @@ -97,4 +107,4 @@
<version>1.2.3</version>
</dependency>
</dependencies>
</project>
</project>

0 comments on commit 1799f80

Please sign in to comment.