Skip to content

Instantly share code, notes, and snippets.

@spullara
Created October 4, 2010 21:29
Show Gist options
  • Select an option

  • Save spullara/610465 to your computer and use it in GitHub Desktop.

Select an option

Save spullara/610465 to your computer and use it in GitHub Desktop.
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>bagcheck.cli.BagCheckCLI</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment