Skip to content

Commit 7f20f78

Browse files
otelbot[bot]trask
andauthored
[release/v2.20.x] Fix release (#14657)
Co-authored-by: Trask Stalnaker <[email protected]>
1 parent 9885c09 commit 7f20f78

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

instrumentation/logback/logback-appender-1.0/library/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ graalvmNative {
5757
toolchainDetection.set(false)
5858
}
5959

60+
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
61+
// See https://github.com/gradle/gradle/issues/17559
62+
tasks.named("collectReachabilityMetadata").configure {
63+
enabled = false
64+
}
65+
6066
// To be able to execute the tests as GraalVM native executables
6167
configurations.configureEach {
6268
exclude("org.apache.groovy", "groovy")

smoke-tests-otel-starter/spring-boot-3.2/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,9 @@ graalvmNative {
7979
setForkEvery(1)
8080
}
8181
}
82+
83+
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
84+
// See https://github.com/gradle/gradle/issues/17559
85+
tasks.named("collectReachabilityMetadata").configure {
86+
enabled = false
87+
}

smoke-tests-otel-starter/spring-boot-3/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,9 @@ graalvmNative {
8282
setForkEvery(1)
8383
}
8484
}
85+
86+
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
87+
// See https://github.com/gradle/gradle/issues/17559
88+
tasks.named("collectReachabilityMetadata").configure {
89+
enabled = false
90+
}

smoke-tests-otel-starter/spring-boot-reactive-3/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,9 @@ graalvmNative {
7373
setForkEvery(1)
7474
}
7575
}
76+
77+
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
78+
// See https://github.com/gradle/gradle/issues/17559
79+
tasks.named("collectReachabilityMetadata").configure {
80+
enabled = false
81+
}

0 commit comments

Comments
 (0)