HHH-6014: Removing the testng dependency from envers and from the available libraries as it isn't used anymore

This commit is contained in:
adamw 2011-04-01 21:39:49 +02:00
parent fb512cdc25
commit c2167b85a7
2 changed files with 7 additions and 7 deletions

View File

@ -79,7 +79,6 @@ libraries = [
// testing
atomikos: 'com.atomikos:transactions-jdbc:3.7.0',
junit: 'junit:junit:4.8.2',
testng: 'org.testng:testng:5.8:jdk15',
jpa_modelgen: 'org.hibernate:hibernate-jpamodelgen:1.1.1.Final',
shrinkwrap_api: 'org.jboss.shrinkwrap:shrinkwrap-api:1.0.0-alpha-6',
shrinkwrap: 'org.jboss.shrinkwrap:shrinkwrap-impl-base:1.0.0-alpha-6'

View File

@ -11,18 +11,19 @@ dependencies {
trasitive = false
}
compile( libraries.ant )
testCompile( libraries.testng )
testCompile( libraries.junit )
testCompile( project(':hibernate-testing') )
testCompile( libraries.jpa )
testRuntime( libraries.h2 )
testRuntime( libraries.javassist )
}
// todo : align testing with other modules
test {
useTestNG() {
suites 'src/test/resources/testng.xml'
sourceSets {
test {
// resources inherently exclude sources
resources {
setSrcDirs( ['src/test/java','src/test/resources'] )
}
}
}