You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2010/05/18 19:08:34 UTC

svn commit: r945759 - /tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml

Author: hlship
Date: Tue May 18 17:08:34 2010
New Revision: 945759

URL: http://svn.apache.org/viewvc?rev=945759&view=rev
Log:
TAP5-1134: Upgrade Hibernate dependencies to 3.5.2

Modified:
    tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml

Modified: tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml?rev=945759&r1=945758&r2=945759&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml Tue May 18 17:08:34 2010
@@ -54,7 +54,7 @@ it can be tricky because there are overl
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-core</artifactId>
-            <version>3.5.1-Final</version>
+            <version>${hibernate-version}</version>
             <exclusions>
                 <exclusion>
                     <groupId>javax.transaction</groupId>
@@ -79,7 +79,7 @@ it can be tricky because there are overl
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-annotations</artifactId>
-            <version>3.5.1-Final</version>
+            <version>${hibernate-version}</version>
             <exclusions>
                 <!-- Make sure we use the version defined by tapestry-ioc. -->
                 <exclusion>
@@ -92,7 +92,7 @@ it can be tricky because there are overl
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-c3p0</artifactId>
-            <version>3.5.1-Final</version>
+            <version>${hibernate-version}</version>
         </dependency>
 
     </dependencies>
@@ -148,7 +148,7 @@ it can be tricky because there are overl
         <repository>
             <id>jboss</id>
             <name>JBoss</name>
-            <url>http://repository.jboss.org/maven2</url>
+            <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
         </repository>
     </repositories>
 
@@ -174,4 +174,8 @@ it can be tricky because there are overl
             </plugin>
         </plugins>
     </reporting>
+    
+    <properties>
+        <hibernate-version>3.5.2-Final</hibernate-version>
+    </properties>
 </project>