123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 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,6)")
- 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 {
- // required on jdk17
- jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
- jvmArgs("--add-opens=java.base/java.lang.invoke=ALL-UNNAMED")
- jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
- // TODO run tests both with and without experimental span attributes
- jvmArgs("-Dotel.instrumentation.hibernate.experimental-span-attributes=true")
- }
|