2010-10-09 14:24:27 -04:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile( project( ':hibernate-core' ) )
|
|
|
|
compile( project( ':hibernate-entitymanager' ) )
|
|
|
|
compile( libraries.commons_annotations )
|
|
|
|
compile( [group: 'org.hibernate', name: 'hibernate-tools', version: '3.2.0.ga'] ) {
|
|
|
|
trasitive = false
|
|
|
|
}
|
|
|
|
compile( libraries.dom4j ) {
|
|
|
|
trasitive = false
|
|
|
|
}
|
|
|
|
compile( libraries.ant )
|
|
|
|
testCompile( libraries.testng )
|
2011-03-07 17:20:53 -05:00
|
|
|
testCompile( project(':hibernate-testing') )
|
2010-10-09 14:24:27 -04:00
|
|
|
testCompile( libraries.jpa )
|
|
|
|
testRuntime( libraries.h2 )
|
|
|
|
testRuntime( libraries.javassist )
|
|
|
|
}
|
|
|
|
|
|
|
|
// todo : align testing with other modules
|
|
|
|
|
|
|
|
test {
|
|
|
|
useTestNG() {
|
|
|
|
suites 'src/test/resources/testng.xml'
|
|
|
|
}
|
2011-03-16 14:38:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// temporary
|
|
|
|
test {
|
|
|
|
ignoreFailures = true
|
2010-10-09 14:24:27 -04:00
|
|
|
}
|