68 lines
2.1 KiB
Plaintext
68 lines
2.1 KiB
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
id("org.unbroken-dome.test-sets")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("org.hibernate")
|
|
module.set("hibernate-core")
|
|
versions.set("[4.0.0.Final,)")
|
|
assertInverse.set(true)
|
|
}
|
|
}
|
|
|
|
testSets {
|
|
create("version5Test") {
|
|
dirName = "test"
|
|
}
|
|
|
|
create("latestDepTest") {
|
|
dirName = "test"
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
val version5Test by existing(Test::class)
|
|
|
|
test {
|
|
dependsOn(version5Test)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.hibernate:hibernate-core:4.0.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-procedure-call-4.3:javaagent"))
|
|
|
|
testImplementation("com.h2database:h2:1.4.197")
|
|
testImplementation("javax.xml.bind:jaxb-api:2.2.11")
|
|
testImplementation("com.sun.xml.bind:jaxb-core:2.2.11")
|
|
testImplementation("com.sun.xml.bind:jaxb-impl:2.2.11")
|
|
testImplementation("javax.activation:activation:1.1.1")
|
|
testImplementation("org.hsqldb:hsqldb:2.0.0")
|
|
// First version to work with Java 14
|
|
testImplementation("org.springframework.data:spring-data-jpa:1.8.0.RELEASE")
|
|
|
|
testImplementation("org.hibernate:hibernate-core:4.0.0.Final")
|
|
testImplementation("org.hibernate:hibernate-entitymanager:4.0.0.Final")
|
|
|
|
add("version5TestImplementation", "org.hibernate:hibernate-core:5.0.0.Final")
|
|
add("version5TestImplementation", "org.hibernate:hibernate-entitymanager:5.0.0.Final")
|
|
add("version5TestImplementation", "org.springframework.data:spring-data-jpa:2.3.0.RELEASE")
|
|
|
|
add("latestDepTestImplementation", "org.hibernate:hibernate-core:5.+")
|
|
add("latestDepTestImplementation", "org.hibernate:hibernate-entitymanager:5.+")
|
|
add("latestDepTestImplementation", "org.springframework.data:spring-data-jpa:(2.4.0,)")
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
// TODO run tests both with and without experimental span attributes
|
|
jvmArgs("-Dotel.instrumentation.hibernate.experimental-span-attributes=true")
|
|
}
|