You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by ol...@apache.org on 2012/12/13 22:04:10 UTC

git commit: move release plugin goals on a property

Updated Branches:
  refs/heads/master 3f44a106e -> 2a2c36353


move release plugin goals on a property


Project: http://git-wip-us.apache.org/repos/asf/incubator-helix/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-helix/commit/2a2c3635
Tree: http://git-wip-us.apache.org/repos/asf/incubator-helix/tree/2a2c3635
Diff: http://git-wip-us.apache.org/repos/asf/incubator-helix/diff/2a2c3635

Branch: refs/heads/master
Commit: 2a2c363532d64c5ed9c9f5fcd646d56044ddf376
Parents: 3f44a10
Author: olivier lamy <ol...@apache.org>
Authored: Thu Dec 13 22:03:56 2012 +0100
Committer: olivier lamy <ol...@apache.org>
Committed: Thu Dec 13 22:03:56 2012 +0100

----------------------------------------------------------------------
 pom.xml |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/2a2c3635/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 493c998..fee4cec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -121,7 +121,10 @@ under the License.
     <!-- fix issue with current apache parent pom -->
     <arguments></arguments>
 
-    <release.preparationGoals>clean install</release.preparationGoals>
+    <helix.release.preparationGoals>clean install</helix.release.preparationGoals>
+    <helix.release.performGoals>deploy</helix.release.performGoals>
+    <helix.release.arguments></helix.release.arguments>
+
   </properties>
 
   <distributionManagement>
@@ -174,7 +177,9 @@ under the License.
           <artifactId>maven-release-plugin</artifactId>
           <version>2.3.2</version>
           <configuration>
-            <preparationGoals>${release.preparationGoals}</preparationGoals>
+            <preparationGoals>${helix.release.preparationGoals}</preparationGoals>
+            <goals>${helix.release.performGoals}</goals>
+            <arguments>${helix.release.arguments}</arguments>
           </configuration>
         </plugin>
         <plugin>