Skip to content
Snippets Groups Projects
Commit a849fbad authored by Daniel's avatar Daniel
Browse files

WIP: Standalone jar.

For issue #24
parent eb840a5f
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,10 @@ run-debug: compile
compile: easy-units
mvn compile
# Compile into a standalone jar file
jar: compile
mvn assembly:single
start-portforwarding:
sudo iptables -t nat -N CAOSDB
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -g CAOSDB
......
......@@ -204,6 +204,14 @@
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal> <!-- Run with: mvn assembly:single -->
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment