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:08:59 UTC

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

Author: kaosko
Date: Fri Mar 23 05:08:59 2012
New Revision: 1304190

URL: http://svn.apache.org/viewvc?rev=1304190&view=rev
Log:
Upgrade hibernate dependency to 4.1.1 as discussed on the dev list (http://markmail.org/thread/3nhpl5cptec4hfgf)
hibernate 4.1.1 has a hard dependency on jboss-logging, add
update hsqldb from 1.8.0.10 to 2.2.8, otherwise hsqldb throws "This function is not supported"

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

Modified: tapestry/tapestry5/trunk/tapestry-hibernate/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-hibernate/build.gradle?rev=1304190&r1=1304189&r2=1304190&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-hibernate/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-hibernate/build.gradle Fri Mar 23 05:08:59 2012
@@ -3,10 +3,11 @@ description = "Provides support for simp
 dependencies {
   compile project(':tapestry-core')
   compile project(':tapestry-hibernate-core')
+  compile "org.jboss.logging:jboss-logging:3.1.0.GA"  
 
   testCompile project(':tapestry-test')
   
-  testRuntime "org.hsqldb:hsqldb:1.8.0.10"
+  testRuntime "org.hsqldb:hsqldb:2.2.8"
 }
 
 jar {