HHH-6740 run envers tests on db matrix
This commit is contained in:
parent
02003c1aec
commit
c84fb01c22
|
@ -1,4 +1,5 @@
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
apply plugin: org.hibernate.gradle.testing.matrix.MatrixTestingPlugin
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile( project( ':hibernate-core' ) )
|
compile( project( ':hibernate-core' ) )
|
||||||
|
@ -17,10 +18,17 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
test {
|
matrix {
|
||||||
// resources inherently exclude sources
|
java {
|
||||||
|
srcDir 'src/matrix/java'
|
||||||
|
}
|
||||||
resources {
|
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
Loading…
Reference in New Issue