You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/03/18 01:07:53 UTC

svn commit: r1082763 - in /tapestry/tapestry5/trunk: settings.gradle tapestry-hibernate-core/build.gradle

Author: hlship
Date: Fri Mar 18 00:07:53 2011
New Revision: 1082763

URL: http://svn.apache.org/viewvc?rev=1082763&view=rev
Log:
TAP5-116: Add tapestry-hibernate-core module to Gradle build

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

Modified: tapestry/tapestry5/trunk/settings.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/settings.gradle?rev=1082763&r1=1082762&r2=1082763&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/settings.gradle (original)
+++ tapestry/tapestry5/trunk/settings.gradle Fri Mar 18 00:07:53 2011
@@ -1,4 +1,5 @@
 include "tapestry-annotations", "tapestry-test", "tapestry-func", "tapestry-ioc", "tapestry-json", "tapestry-core"
+include "tapestry-hibernate-core"
 // TODO: tapestry-hibernate-core, tapestry-hibernate, tapestry-jmx, tapestry-upload, tapestry-spring, tapestry-beanvalidator
 // TODO (LATER): tapestry-component-report, quickstart
 

Added: tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle?rev=1082763&view=auto
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle (added)
+++ tapestry/tapestry5/trunk/tapestry-hibernate-core/build.gradle Fri Mar 18 00:07:53 2011
@@ -0,0 +1,24 @@
+description = "Basic Hibernate services for Tapestry, useable outside of a Tapestry web application"
+
+hibernateVersion = '3.6.0.Final'
+
+dependencies {
+  compile project(':tapestry-ioc')
+  
+  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"
+  
+  runtime "geronimo-spec:geronimo-spec-jta:1.0-M1"  
+  runtime "antlr:antlr:2.7.6"
+  runtime "dom4j:dom4j:1.6.1"
+  
+    
+  testCompile project(':tapestry-test')
+
+  testCompile "org.easymock:easymock:$easymockVersion"
+  
+  testCompile "org.testng:testng:$testngVersion", { transitive = false }
+  
+  testRuntime "org.hsqldb:hsqldb:1.8.0.10"
+}
\ No newline at end of file