39 lines
1.4 KiB
Groovy
39 lines
1.4 KiB
Groovy
apply from: "${rootDir}/gradle/instrumentation.gradle"
|
|
apply plugin: 'org.unbroken-dome.test-sets'
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.hibernate"
|
|
module = "hibernate-core"
|
|
versions = "[4.3.0.Final,)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
testSets {
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'org.hibernate', name: 'hibernate-core', version: '4.3.0.Final'
|
|
|
|
compile project(':instrumentation:hibernate:hibernate-common')
|
|
|
|
testCompile project(':instrumentation:jdbc')
|
|
// Added to ensure cross compatibility:
|
|
testCompile project(':instrumentation:hibernate:hibernate-3.3')
|
|
testCompile project(':instrumentation:hibernate:hibernate-4.0')
|
|
|
|
testCompile group: 'org.hibernate', name: 'hibernate-core', version: '4.3.0.Final'
|
|
testCompile group: 'org.hibernate', name: 'hibernate-entitymanager', version: '4.3.0.Final'
|
|
testCompile group: 'org.hsqldb', name: 'hsqldb', version: '2.0.0'
|
|
testCompile group: 'org.springframework.data', name: 'spring-data-jpa', version: '1.5.1.RELEASE'
|
|
|
|
latestDepTestCompile group: 'org.hibernate', name: 'hibernate-core', version: '(,6.0.0.Final)'
|
|
latestDepTestCompile group: 'org.hibernate', name: 'hibernate-entitymanager', version: '(,6.0.0.Final)'
|
|
latestDepTestCompile group: 'org.hsqldb', name: 'hsqldb', version: '2.0.0'
|
|
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-jpa', version: '+'
|
|
}
|