summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSimon Rettberg2014-06-04 16:31:40 +0200
committerSimon Rettberg2014-06-04 16:31:40 +0200
commit0740ef2664b243df8229b2a50a8c786316a0a900 (patch)
treeb7f1f92e26aad2ffb28773253effcd6d534d5a94 /pom.xml
parentFix vmstore mount point (diff)
downloadtmlite-bwlp-0740ef2664b243df8229b2a50a8c786316a0a900.tar.gz
tmlite-bwlp-0740ef2664b243df8229b2a50a8c786316a0a900.tar.xz
tmlite-bwlp-0740ef2664b243df8229b2a50a8c786316a0a900.zip
Change pom.xml to create jar with dependencies
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 270801b..1895a36 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,6 +25,27 @@
<target>1.7</target>
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <archive>
+ <manifest>
+ <mainClass>org.openslx.taskmanager.App</mainClass>
+ </manifest>
+ </archive>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ </plugin>
</plugins>
</build>