Last active
July 24, 2019 10:04
-
-
Save sirolf2009/ceb3d1fd8c891872c6b325b3571be03a to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>appassembler-maven-plugin</artifactId> | |
<version>2.0.0</version> | |
<configuration> | |
<assembleDirectory>${project.build.directory}/${project.artifactId}</assembleDirectory> | |
<programs> | |
<program> | |
<mainClass>nl.northpool.eex.pusher.Pusher</mainClass> | |
<id>pusher</id> | |
<commandLineArguments> | |
<commandLineArgument>6790</commandLineArgument> | |
</commandLineArguments> | |
<jvmSettings> | |
<extraArgument> | |
-Dlog4j.configurationFile=log4j2.xml | |
</extraArgument> | |
</jvmSettings> | |
</program> | |
</programs> | |
</configuration> | |
</plugin> |
This file contains hidden or 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
#!/bin/bash | |
mvn clean install appassembler:assemble | |
cp -r jamm-0.3.3.jar html target/traan-api | |
tar -czvf traan-api.tar -C target traan-api |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment