Skip to content

Instantly share code, notes, and snippets.

@maggandalf
Last active December 31, 2015 21:09
Show Gist options
  • Select an option

  • Save maggandalf/8045161 to your computer and use it in GitHub Desktop.

Select an option

Save maggandalf/8045161 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>foobank</finalName>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment