description = "Basic Hibernate services for Tapestry, useable outside of a Tapestry web application" hibernateVersion = '4.1.2.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" 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" runtime "dom4j:dom4j:1.6.1" runtime "javassist:javassist:3.12.1.GA" testCompile project(':tapestry-test') testCompile "org.easymock:easymock:$easymockVersion" testCompile "org.testng:testng:$testngVersion", { transitive = false } testRuntime "org.hsqldb:hsqldb:2.2.8" } jar { manifest { attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.hibernate.HibernateCoreModule' } }