123456789101112131415161718192021222324252627282930313233343536373839 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("org.springframework")
- module.set("spring-context")
- versions.set("[3.1.0.RELEASE,]")
- assertInverse.set(true)
- }
- }
- dependencies {
- bootstrap(project(":instrumentation:spring:spring-scheduling-3.1:bootstrap"))
- // 3.2.3 is the first version with which the tests will run. Lower versions require other
- // classes and packages to be imported. Versions 3.1.0+ work with the instrumentation.
- library("org.springframework:spring-context:3.1.0.RELEASE")
- testLibrary("org.springframework:spring-context:3.2.3.RELEASE")
- }
- tasks.withType<Test>().configureEach {
- // TODO run tests both with and without experimental span attributes
- jvmArgs("-Dotel.instrumentation.spring-scheduling.experimental-span-attributes=true")
- // required on jdk17
- jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
- jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
- }
- val latestDepTest = findProperty("testLatestDeps") as Boolean
- // spring 6 requires java 17
- if (latestDepTest) {
- otelJava {
- minJavaVersionSupported.set(JavaVersion.VERSION_17)
- }
- }
|