Skip to content

Commit

Permalink
Build a jar-with-depends for tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
samskivert committed Oct 6, 2015
1 parent 2ee3ea7 commit b245249
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tools/pom.xml
Expand Up @@ -55,6 +55,26 @@
</execution>
</executions>
</plugin>

<!-- builds a standalone jar file during 'mvn package' -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit b245249

Please sign in to comment.