60 lines
2.4 KiB
Groovy
60 lines
2.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 {
|
|
version5Test {
|
|
dirName = 'test'
|
|
}
|
|
version6Test {
|
|
dirName = 'test'
|
|
}
|
|
|
|
latestDepTest {
|
|
dirName = 'test'
|
|
}
|
|
}
|
|
|
|
test.dependsOn version5Test, version6Test
|
|
|
|
dependencies {
|
|
implementation group: 'org.hibernate', name: 'hibernate-core', version: '4.3.0.Final'
|
|
|
|
implementation project(':instrumentation:hibernate:hibernate-common:javaagent')
|
|
|
|
testInstrumentation project(':instrumentation:jdbc:javaagent')
|
|
// Added to ensure cross compatibility:
|
|
testInstrumentation project(':instrumentation:hibernate:hibernate-3.3:javaagent')
|
|
testInstrumentation project(':instrumentation:hibernate:hibernate-4.0:javaagent')
|
|
|
|
testImplementation group: 'org.hibernate', name: 'hibernate-entitymanager', version: '4.3.0.Final'
|
|
testImplementation group: 'org.hsqldb', name: 'hsqldb', version: '2.0.0'
|
|
//First version to work with Java 14
|
|
testImplementation group: 'org.springframework.data', name: 'spring-data-jpa', version: '1.8.0.RELEASE'
|
|
|
|
version5TestImplementation group: 'org.hibernate', name: 'hibernate-core', version: '5.0.0.Final'
|
|
version5TestImplementation group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.0.0.Final'
|
|
version5TestImplementation group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.3.0.RELEASE'
|
|
|
|
version6TestImplementation group: 'org.hibernate', name: 'hibernate-core', version: '6.0.0.Alpha6'
|
|
version6TestImplementation group: 'org.hibernate', name: 'hibernate-entitymanager', version: '6.0.0.Alpha6'
|
|
version6TestImplementation group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.3.0.RELEASE'
|
|
|
|
testImplementation group: 'javax.activation', name: 'javax.activation-api', version: '1.2.0'
|
|
testImplementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
|
|
testImplementation group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.3'
|
|
|
|
// hibernate 6 is alpha so use 5 as latest version
|
|
latestDepTestImplementation group: 'org.hibernate', name: 'hibernate-core', version: '5.+'
|
|
latestDepTestImplementation group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.+'
|
|
latestDepTestImplementation group: 'org.springframework.data', name: 'spring-data-jpa', version: '(2.4.0,)'
|
|
}
|