blob: b2a5116f67bea1919b1f22eb2ad6262002ad6bde [file] [log] [blame]
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"
}
jar {
manifest {
attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.hibernate.HibernateCoreModule'
}
}