diff options
author | Olivier Lamy <olamy@apache.org> | 2012-07-07 22:06:25 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2012-07-07 22:06:25 +0000 |
commit | 8eeb8736a452f961109d5daf3530057ea5e924ae (patch) | |
tree | 4a16b7563e27cdd83d4b7cc443ae2dd1e8bf5fe6 /pom.xml | |
parent | 89094260e7fe6eb9a1ee7f09043b6b790f02c2bc (diff) | |
download | archiva-8eeb8736a452f961109d5daf3530057ea5e924ae.tar.gz archiva-8eeb8736a452f961109d5daf3530057ea5e924ae.zip |
fix release profile
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1358655 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 25 |
1 files changed, 13 insertions, 12 deletions
@@ -1723,9 +1723,8 @@ <useReleaseProfile>false</useReleaseProfile> <autoVersionSubmodules>true</autoVersionSubmodules> <goals>deploy</goals> - <preparationGoals>clean</preparationGoals> - <!-- TODO: merge these when upgrading to latest ASF parent POM --> - <arguments>-Papache-release,release</arguments> + <preparationGoals>clean install</preparationGoals> + <arguments>-Prelease</arguments> </configuration> </plugin> <plugin> @@ -1782,15 +1781,17 @@ <profile> <id>release</id> <build> - <plugins> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <inherited>false</inherited> - <configuration> - <finalName>apache-archiva-${project.version}-src</finalName> - </configuration> - </plugin> - </plugins> + <pluginManagement> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <inherited>false</inherited> + <configuration> + <finalName>apache-archiva-${project.version}-src</finalName> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </profile> |