[release/v2.20.x] Fix release (#14657)
Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
This commit is contained in:
parent
9885c09865
commit
7f20f7829b
|
|
@ -57,6 +57,12 @@ graalvmNative {
|
||||||
toolchainDetection.set(false)
|
toolchainDetection.set(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
|
||||||
|
// See https://github.com/gradle/gradle/issues/17559
|
||||||
|
tasks.named("collectReachabilityMetadata").configure {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
// To be able to execute the tests as GraalVM native executables
|
// To be able to execute the tests as GraalVM native executables
|
||||||
configurations.configureEach {
|
configurations.configureEach {
|
||||||
exclude("org.apache.groovy", "groovy")
|
exclude("org.apache.groovy", "groovy")
|
||||||
|
|
|
||||||
|
|
@ -79,3 +79,9 @@ graalvmNative {
|
||||||
setForkEvery(1)
|
setForkEvery(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
|
||||||
|
// See https://github.com/gradle/gradle/issues/17559
|
||||||
|
tasks.named("collectReachabilityMetadata").configure {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -82,3 +82,9 @@ graalvmNative {
|
||||||
setForkEvery(1)
|
setForkEvery(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
|
||||||
|
// See https://github.com/gradle/gradle/issues/17559
|
||||||
|
tasks.named("collectReachabilityMetadata").configure {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -73,3 +73,9 @@ graalvmNative {
|
||||||
setForkEvery(1)
|
setForkEvery(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Disable collectReachabilityMetadata task to avoid configuration isolation issues
|
||||||
|
// See https://github.com/gradle/gradle/issues/17559
|
||||||
|
tasks.named("collectReachabilityMetadata").configure {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue