Skip to content

Commit

Permalink
HHH-6014: Removing the testng dependency from envers and from the ava…
Browse files Browse the repository at this point in the history
…ilable libraries as it isn't used anymore
  • Loading branch information
adamw committed Apr 1, 2011
1 parent fb512cd commit c2167b8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
1 change: 0 additions & 1 deletion build.gradle
Expand Up @@ -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'
Expand Down
13 changes: 7 additions & 6 deletions hibernate-envers/hibernate-envers.gradle
Expand Up @@ -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'] )
}
}
}

Expand Down

0 comments on commit c2167b8

Please sign in to comment.