HHH-6740 run envers tests on db matrix

This commit is contained in:
Strong Liu 2011-10-18 12:29:45 +08:00
parent 02003c1aec
commit c84fb01c22
524 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,5 @@
apply plugin: 'java'
apply plugin: org.hibernate.gradle.testing.matrix.MatrixTestingPlugin
dependencies {
compile( project( ':hibernate-core' ) )
@ -17,10 +18,17 @@ dependencies {
}
sourceSets {
test {
// resources inherently exclude sources
matrix {
java {
srcDir 'src/matrix/java'
}
resources {
setSrcDirs( ['src/test/java','src/test/resources'] )
srcDir 'src/matrix/resources'
srcDir 'src/matrix/java'
}
}
}
ideaModule {
testSourceDirs += file( 'src/matrix/java')
testSourceDirs += file( 'src/matrix/resources')
}

Some files were not shown because too many files have changed in this diff Show More