Skip to content

Commit

Permalink
runnable jar, with dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FauxFaux committed Aug 21, 2012
1 parent 456cb33 commit 6508a48
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion pom.xml
Expand Up @@ -77,6 +77,27 @@
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.marklogic.ps.RecordLoader</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</build>
</project>

0 comments on commit 6508a48

Please sign in to comment.