Bind assembly building to deploy phase

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17897 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2009-11-03 05:12:40 +00:00
parent d8f6d41a4b
commit f88c502e95
1 changed files with 14 additions and 0 deletions

View File

@ -44,6 +44,20 @@
<description>Builds the complete Hibernate distribution bundles</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>