You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by ka...@apache.org on 2012/03/23 06:05:27 UTC

svn commit: r1304189 - /tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle

Author: kaosko
Date: Fri Mar 23 05:05:27 2012
New Revision: 1304189

URL: http://svn.apache.org/viewvc?rev=1304189&view=rev
Log:
Upgrade hibernate dependency to 4.1.1 as discussed on the dev list (http://markmail.org/thread/3nhpl5cptec4hfgf)

Modified:
    tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle

Modified: tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle?rev=1304189&r1=1304188&r2=1304189&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle Fri Mar 23 05:05:27 2012
@@ -1,6 +1,6 @@
 description = "Basic Hibernate services for Tapestry, useable outside of a Tapestry web application"
 
-hibernateVersion = '3.6.0.Final'
+hibernateVersion = '4.1.1.Final'
 
 dependencies {
   compile project(':tapestry-ioc')
@@ -8,6 +8,7 @@ dependencies {
   compile group: 'org.hibernate', name: 'hibernate-core', version: hibernateVersion, transitive: false
   compile "org.hibernate:hibernate-commons-annotations:3.2.0.Final"
   compile "org.hibernate.javax.persistence:hibernate-jpa-2.0-api:1.0.0.Final"
+  compile "org.jboss.logging:jboss-logging:3.1.0.GA"  
   
   runtime "geronimo-spec:geronimo-spec-jta:1.0-M1"  
   runtime "antlr:antlr:2.7.6"
@@ -21,7 +22,7 @@ dependencies {
   
   testCompile "org.testng:testng:$testngVersion", { transitive = false }
   
-  testRuntime "org.hsqldb:hsqldb:1.8.0.10"
+  testRuntime "org.hsqldb:hsqldb:2.2.8"
 }
 
 jar {