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
|
||||
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'
|
||||
|
|
|
@ -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'] )
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue