2013-11-26 18:48:09 -05:00
|
|
|
dependencies {
|
|
|
|
compile project( ':hibernate-core' )
|
|
|
|
compile( libraries.junit )
|
|
|
|
compile( libraries.byteman )
|
|
|
|
compile( libraries.byteman_install )
|
|
|
|
compile( libraries.byteman_bmunit )
|
|
|
|
compile( libraries.xapool )
|
2015-02-27 05:56:23 -05:00
|
|
|
compile( libraries.log4j )
|
2013-11-26 18:48:09 -05:00
|
|
|
compile ( libraries.jboss_jta ) {
|
|
|
|
transitive=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-27 05:56:23 -05:00
|
|
|
// resources inherently exclude sources
|
|
|
|
sourceSets.test.resources {
|
|
|
|
setSrcDirs( ['src/test/java'] )
|
|
|
|
}
|
|
|
|
|
2013-11-26 18:53:31 -05:00
|
|
|
// todo : Fold into hibernate-core and publish in separate publications
|
2013-11-26 18:56:30 -05:00
|
|
|
// 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
|
2013-11-26 18:53:31 -05:00
|
|
|
|
2015-04-10 12:58:22 -04:00
|
|
|
mavenPom {
|
|
|
|
name = 'Hibernate ORM Testing'
|
|
|
|
description = 'Support for testing Hibernate ORM functionality'
|
2013-11-26 18:56:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
def osgiDescription() {
|
2015-04-10 12:58:22 -04:00
|
|
|
return mavenPom.description
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|