Skip to content

Commit

Permalink
Merge pull request CUTR-at-USF#19 from CUTR-at-USF/bundleDependencies
Browse files Browse the repository at this point in the history
Add Maven plugin to bundle dependencies with generated JAR
  • Loading branch information
barbeau committed Aug 5, 2015
2 parents 51638b5 + 18371fc commit 09b64d0
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion GO_Sync/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,31 @@
</configuration>
</execution>
</executions>
</plugin>
</plugin>
-->

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>edu.usf.cutr.go_sync.gui.MainForm</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>
</project>
Expand Down

0 comments on commit 09b64d0

Please sign in to comment.