blob: 3e541327a14b5acf13741cb31c4a306aaf67fecf [file] [log] [blame]
description = "Basic Hibernate services for Tapestry, useable outside of a Tapestry web application"
dependencies {
implementation project(':tapestry-ioc')
api group: 'org.hibernate', name: 'hibernate-core', version: versions.hibernate
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.2'
testImplementation project(':tapestry-test')
testImplementation "org.easymock:easymock:${versions.easymock}"
testImplementation "org.testng:testng:${versions.testng}", { transitive = false }
testRuntimeOnly "org.hsqldb:hsqldb:${versions.hsqldb}"
}
jar {
manifest {
attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.hibernate.modules.HibernateCoreModule'
}
}