Skip to content

Instantly share code, notes, and snippets.

@ido-ran
Created January 24, 2018 13:26
Show Gist options
  • Save ido-ran/63f10da1890b120d80465ba511e4a7cd to your computer and use it in GitHub Desktop.
Save ido-ran/63f10da1890b120d80465ba511e4a7cd to your computer and use it in GitHub Desktop.
Maven pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<finalName>mqm-distribution</finalName>
<descriptors>
<descriptor>assembly/assemblyDescriptor.xml</descriptor>
</descriptors>
</configuration>
<id>assemble for basic distribution template</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment