[hibernate-commits] Hibernate SVN: r17032 - beanvalidation/trunk/validation-api.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Jul 8 05:00:33 EDT 2009


Author: hardy.ferentschik
Date: 2009-07-08 05:00:33 -0400 (Wed, 08 Jul 2009)
New Revision: 17032

Modified:
   beanvalidation/trunk/validation-api/pom.xml
Log:
configure release plugin properly

Modified: beanvalidation/trunk/validation-api/pom.xml
===================================================================
--- beanvalidation/trunk/validation-api/pom.xml	2009-07-08 08:33:25 UTC (rev 17031)
+++ beanvalidation/trunk/validation-api/pom.xml	2009-07-08 09:00:33 UTC (rev 17032)
@@ -6,7 +6,7 @@
 
     <groupId>javax.validation</groupId>
     <artifactId>validation-api</artifactId>
-    <version>1.0.CR3</version>
+    <version>1.0.CR3-SNAPSHOT</version>
     <packaging>jar</packaging>
     <name>Bean Validation API</name>
 
@@ -62,10 +62,13 @@
                     </executions>
                 </plugin>
                 <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-release-plugin</artifactId>
+                    <version>2.0-beta-9</version>
                     <configuration>
-                        <releaseProfiles>release</releaseProfiles>
-                        <goals>install</goals>
+                        <allowTimestampedSnapshots>true</allowTimestampedSnapshots>
+                        <remoteTagging>true</remoteTagging>
+                        <goals>deploy</goals>
                     </configuration>
                 </plugin>
             </plugins>
@@ -92,6 +95,13 @@
     </scm>
 
     <distributionManagement>
+        <repository>
+            <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+            <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+            <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+            <id>repository.jboss.org</id>
+            <url>file://${maven.repository.root}</url>
+        </repository>
         <snapshotRepository>
             <id>snapshots.jboss.org</id>
             <name>JBoss Snapshot Repository</name>




More information about the hibernate-commits mailing list