Skip to content

Commit

Permalink
added shade plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
DerCodeDev committed May 19, 2023
1 parent 0180865 commit a7c9d45
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,28 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<transformers>
<transformer implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>dev.samir.vmdconverter.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
8 changes: 8 additions & 0 deletions src/main/java/dev/samir/vmdconverter/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package dev.samir.vmdconverter;

public class Main {

public static void main(String[] args) {
App.main(args);
}
}

0 comments on commit a7c9d45

Please sign in to comment.