From 89b59cffd6fac9d6d78df6cfeee274d5fcd04676 Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Fri, 14 Jun 2024 15:18:38 +0300 Subject: [PATCH] Work around publishing failure (#11593) --- build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 202f1cb2d8..6d0392dcd9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,6 +5,15 @@ plugins { id("io.github.gradle-nexus.publish-plugin") id("otel.spotless-conventions") + /* workaround for + What went wrong: + Could not determine the dependencies of task ':smoke-tests-otel-starter:spring-boot-3.2:bootJar'. + > Could not create task ':smoke-tests-otel-starter:spring-boot-3.2:collectReachabilityMetadata'. + > Cannot set the value of task ':smoke-tests-otel-starter:spring-boot-3.2:collectReachabilityMetadata' property 'metadataService' of type org.graalvm.buildtools.gradle.internal.GraalVMReachabilityMetadataService using a provider of type org.graalvm.buildtools.gradle.internal.GraalVMReachabilityMetadataService. + + See https://github.com/gradle/gradle/issues/17559#issuecomment-1327991512 + */ + id("org.graalvm.buildtools.native") apply false } apply(from = "version.gradle.kts")