HHH-6014: Removing the testng dependency from envers and from the available libraries as it isn't used anymore
This commit is contained in:
parent
fb512cdc25
commit
c2167b85a7
|
@ -79,7 +79,6 @@ libraries = [
|
||||||
// testing
|
// testing
|
||||||
atomikos: 'com.atomikos:transactions-jdbc:3.7.0',
|
atomikos: 'com.atomikos:transactions-jdbc:3.7.0',
|
||||||
junit: 'junit:junit:4.8.2',
|
junit: 'junit:junit:4.8.2',
|
||||||
testng: 'org.testng:testng:5.8:jdk15',
|
|
||||||
jpa_modelgen: 'org.hibernate:hibernate-jpamodelgen:1.1.1.Final',
|
jpa_modelgen: 'org.hibernate:hibernate-jpamodelgen:1.1.1.Final',
|
||||||
shrinkwrap_api: 'org.jboss.shrinkwrap:shrinkwrap-api:1.0.0-alpha-6',
|
shrinkwrap_api: 'org.jboss.shrinkwrap:shrinkwrap-api:1.0.0-alpha-6',
|
||||||
shrinkwrap: 'org.jboss.shrinkwrap:shrinkwrap-impl-base:1.0.0-alpha-6'
|
shrinkwrap: 'org.jboss.shrinkwrap:shrinkwrap-impl-base:1.0.0-alpha-6'
|
||||||
|
|
|
@ -11,18 +11,19 @@ dependencies {
|
||||||
trasitive = false
|
trasitive = false
|
||||||
}
|
}
|
||||||
compile( libraries.ant )
|
compile( libraries.ant )
|
||||||
testCompile( libraries.testng )
|
testCompile( libraries.junit )
|
||||||
testCompile( project(':hibernate-testing') )
|
testCompile( project(':hibernate-testing') )
|
||||||
testCompile( libraries.jpa )
|
testCompile( libraries.jpa )
|
||||||
testRuntime( libraries.h2 )
|
testRuntime( libraries.h2 )
|
||||||
testRuntime( libraries.javassist )
|
testRuntime( libraries.javassist )
|
||||||
}
|
}
|
||||||
|
|
||||||
// todo : align testing with other modules
|
sourceSets {
|
||||||
|
test {
|
||||||
test {
|
// resources inherently exclude sources
|
||||||
useTestNG() {
|
resources {
|
||||||
suites 'src/test/resources/testng.xml'
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue