hibernate-orm/hibernate-testing/hibernate-testing.gradle

29 lines
732 B
Groovy
Raw Normal View History

dependencies {
compile project( ':hibernate-core' )
compile( libraries.junit )
compile( libraries.byteman )
compile( libraries.byteman_install )
compile( libraries.byteman_bmunit )
compile( libraries.xapool )
compile ( libraries.jboss_jta ) {
transitive=false;
}
}
// todo : Fold into hibernate-core and publish in separate publications
// once http://issues.gradle.org/browse/GRADLE-2966 is resolved;
// that will allow us to keep the same artifactId and publish the pom
// with proper dependencies
def pomName() {
return 'Hibernate ORM Testing'
}
def pomDescription() {
return 'Support for testing Hibernate ORM functionality'
}
def osgiDescription() {
return pomDescription()
2013-12-02 21:53:19 -05:00
}