[hibernate-commits] Hibernate SVN: r20165 - in core/branches/Branch_3_5: distribution and 7 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Aug 18 14:24:45 EDT 2010


Author: gbadner
Date: 2010-08-18 14:24:45 -0400 (Wed, 18 Aug 2010)
New Revision: 20165

Modified:
   core/branches/Branch_3_5/distribution/pom.xml
   core/branches/Branch_3_5/documentation/envers/pom.xml
   core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
   core/branches/Branch_3_5/documentation/manual/pom.xml
   core/branches/Branch_3_5/documentation/pom.xml
   core/branches/Branch_3_5/jdbc3-testing/pom.xml
   core/branches/Branch_3_5/jdbc4-testing/pom.xml
   core/branches/Branch_3_5/pom.xml
   core/branches/Branch_3_5/testsuite/pom.xml
Log:
HHH-5438 - Skip deployment of "irrelevant" modules

Modified: core/branches/Branch_3_5/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_5/distribution/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/distribution/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -41,6 +41,11 @@
     <name>Hibernate Distribution</name>
     <description>Builds the complete Hibernate distribution bundles</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <build>
         <plugins>
             <plugin>

Modified: core/branches/Branch_3_5/documentation/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/envers/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/documentation/envers/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -17,6 +17,11 @@
     <name>Hibernate Envers Manual</name>
     <description>The Hibernate Envers reference manual</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <build>
         <plugins>
             <plugin>

Modified: core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/jbosscache2/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/documentation/jbosscache2/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -41,6 +41,11 @@
     <name>Hibernate/JBoss Cache 3 Reference Manual</name>
     <description>The Hibernate / JBoss Cache 3 integration reference manual</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <build>
         <plugins>
             <plugin>

Modified: core/branches/Branch_3_5/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/documentation/manual/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -17,6 +17,11 @@
     <name>Hibernate Manual</name>
     <description>The Hibernate reference manual</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <build>
         <plugins>
             <plugin>

Modified: core/branches/Branch_3_5/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/documentation/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -17,6 +17,11 @@
     <name>Hibernate Core Documentation</name>
     <description>Grouping of Hibernate Core Project documentation modules</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <modules>
         <module>manual</module>
         <module>envers</module>

Modified: core/branches/Branch_3_5/jdbc3-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc3-testing/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/jdbc3-testing/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -38,6 +38,11 @@
     <name>Hibernate JDBC3-JdbcSupport Testing</name>
     <description>Test support of JDBC3 through JdbcSupport</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>

Modified: core/branches/Branch_3_5/jdbc4-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc4-testing/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/jdbc4-testing/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -36,6 +36,11 @@
     <name>Hibernate JDBC4-JdbcSupport Testing</name>
     <description>Test support of JDBC4 through JdbcSupport</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <build>
         <plugins>
             <plugin>

Modified: core/branches/Branch_3_5/pom.xml
===================================================================
--- core/branches/Branch_3_5/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -17,6 +17,11 @@
     <name>Hibernate Core Aggregator</name>
     <description>Aggregator of the Hibernate Core modules.</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <modules>
         <module>parent</module>
         <module>core</module>

Modified: core/branches/Branch_3_5/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_5/testsuite/pom.xml	2010-08-18 17:54:28 UTC (rev 20164)
+++ core/branches/Branch_3_5/testsuite/pom.xml	2010-08-18 18:24:45 UTC (rev 20165)
@@ -17,6 +17,11 @@
     <name>Hibernate Testsuite</name>
     <description>The testsuite of Hibernate functionality</description>
 
+    <properties>
+        <!-- Skip artifact deployment -->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>${groupId}</groupId>



More information about the hibernate-commits mailing list