deploy the site on release

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@642652 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2008-03-30 00:13:12 +00:00
parent ac6b59e28c
commit 87cc0df28e
1 changed files with 23 additions and 0 deletions

View File

@ -87,4 +87,27 @@
<url>${siteBaseDeployment}/docs/${project.version}</url>
</site>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<!-- TODO: this deploys directly - what about staging? -->
<build>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>