Skip to content

Commit

Permalink
Add assembly execution so that the zip is uploaded during release:per…
Browse files Browse the repository at this point in the history
  • Loading branch information
magro committed Jan 28, 2014
1 parent 3371d4f commit 001a420
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,19 @@
<configuration>
<descriptor>etc/assembly-all.xml</descriptor>
</configuration>
<!--
According to http://stackoverflow.com/questions/2244344/deploying-assembly-package-with-maven-release-plugin
this should add the assembly zip to the files uploaded during release:perform/deploy.
-->
<executions>
<execution>
<id>dist-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 001a420

Please sign in to comment.