Skip to content
This repository has been archived by the owner on Feb 17, 2019. It is now read-only.

Commit

Permalink
updated pom
Browse files Browse the repository at this point in the history
  • Loading branch information
sergix44 committed Sep 25, 2016
1 parent 8c3d53d commit ebbfd77
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>it.ksuploader</groupId>
<artifactId>KSUploader-server</artifactId>
<version>1.6</version>
<version>1.7</version>
<build>
<plugins>
<plugin>
Expand All @@ -17,6 +17,28 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>it.ksuploader.main.KSUploaderServer</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down

0 comments on commit ebbfd77

Please sign in to comment.