File tree Expand file tree Collapse file tree 4 files changed +24
-0
lines changed
instrumentation/logback/logback-appender-1.0/library Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Original file line number Diff line number Diff 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
6167configurations.configureEach {
6268 exclude(" org.apache.groovy" , " groovy" )
Original file line number Diff line number Diff 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+ }
Original file line number Diff line number Diff 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+ }
Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments