Last active
February 2, 2020 15:17
-
-
Save klausbrunner/9954309 to your computer and use it in GitHub Desktop.
Creating two different executable JARs with dependencies from the same Maven project - same contents but different Main class in the manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>make-assembly1</id> | |
<phase>package</phase> | |
<goals> | |
<goal>single</goal> | |
</goals> | |
<configuration> | |
<archive> | |
<manifest> | |
<mainClass>fully.qualified.ClassName1</mainClass> | |
</manifest> | |
</archive> | |
<descriptorRefs> | |
<descriptorRef>jar-with-dependencies</descriptorRef> | |
</descriptorRefs> | |
<finalName>name1</finalName> | |
<appendAssemblyId>false</appendAssemblyId> | |
</configuration> | |
</execution> | |
<execution> | |
<id>make-assembly2</id> | |
<phase>package</phase> | |
<goals> | |
<goal>single</goal> | |
</goals> | |
<configuration> | |
<archive> | |
<manifest> | |
<mainClass>fully.qualified.ClassName2</mainClass> | |
</manifest> | |
</archive> | |
<descriptorRefs> | |
<descriptorRef>jar-with-dependencies</descriptorRef> | |
</descriptorRefs> | |
<finalName>name2</finalName> | |
<appendAssemblyId>false</appendAssemblyId> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> |
hi i have two main classes and i need to run the main classes as the entry points like one for tests and one for MQ injections
please let me know how can i run those using pom.xml
i tried using the above code and manifest multiple entries
mvn package
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi i have two main classes and i need to run the main classes as the entry points like one for tests and one for MQ injections
please let me know how can i run those using pom.xml
i tried using the above code and manifest multiple entries