You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2016/11/05 10:10:02 UTC

svn commit: r1768179 - /sling/trunk/parent/pom.xml

Author: cziegeler
Date: Sat Nov  5 10:10:02 2016
New Revision: 1768179

URL: http://svn.apache.org/viewvc?rev=1768179&view=rev
Log:
SLING-6245 : Add odd-even release policy to release plugin

Modified:
    sling/trunk/parent/pom.xml

Modified: sling/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/parent/pom.xml?rev=1768179&r1=1768178&r2=1768179&view=diff
==============================================================================
--- sling/trunk/parent/pom.xml (original)
+++ sling/trunk/parent/pom.xml Sat Nov  5 10:10:02 2016
@@ -269,10 +269,16 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-release-plugin</artifactId>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.maven.release</groupId>
+                        <artifactId>maven-release-oddeven-policy</artifactId>
+                        <version>2.5.3</version>
+                    </dependency>
+                </dependencies>
                 <configuration>
-                    <tagBase>
-                        https://svn.apache.org/repos/asf/sling/tags
-                    </tagBase>
+                    <projectVersionPolicyId>OddEvenVersionPolicy</projectVersionPolicyId>
+                    <tagBase>https://svn.apache.org/repos/asf/sling/tags</tagBase>
                 </configuration>
             </plugin>
             <plugin>