[hibernate-commits] Hibernate SVN: r16073 - in validator/trunk: hibernate-validator and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Mar 4 10:02:19 EST 2009


Author: hardy.ferentschik
Date: 2009-03-04 10:02:19 -0500 (Wed, 04 Mar 2009)
New Revision: 16073

Modified:
   validator/trunk/hibernate-validator/pom.xml
   validator/trunk/pom.xml
Log:
added release plugin

Modified: validator/trunk/hibernate-validator/pom.xml
===================================================================
--- validator/trunk/hibernate-validator/pom.xml	2009-03-04 11:22:36 UTC (rev 16072)
+++ validator/trunk/hibernate-validator/pom.xml	2009-03-04 15:02:19 UTC (rev 16073)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <parent>
         <artifactId>hibernate-validator-parent</artifactId>
         <groupId>org.hibernate</groupId>
@@ -40,12 +40,12 @@
             <version>4.4</version>
             <scope>test</scope>
         </dependency>
-       <dependency>
+        <dependency>
             <groupId>junitperf</groupId>
             <artifactId>junitperf</artifactId>
             <version>1.8</version>
             <scope>test</scope>
-        </dependency>        
+        </dependency>
     </dependencies>
     <build>
         <resources>

Modified: validator/trunk/pom.xml
===================================================================
--- validator/trunk/pom.xml	2009-03-04 11:22:36 UTC (rev 16072)
+++ validator/trunk/pom.xml	2009-03-04 15:02:19 UTC (rev 16073)
@@ -116,6 +116,24 @@
                         </execution>
                     </executions>
                 </plugin>
+                <plugin>
+                    <artifactId>maven-assembly-plugin</artifactId>
+                    <configuration>
+                        <descriptorRefs>
+                            <descriptorRef>project</descriptorRef>
+                        </descriptorRefs>
+                    </configuration>
+                </plugin>
+			    <plugin>
+			        <artifactId>maven-release-plugin</artifactId>
+			        <configuration>
+			           <!--
+			              During release:perform, enable the "release" profile
+			            -->
+			            <releaseProfiles>release</releaseProfiles>
+			            <goals>site assembly:assembly</goals>
+			         </configuration>
+			  </plugin>
             </plugins>
         </pluginManagement>
     </build>




More information about the hibernate-commits mailing list