From 67a59dc44183d1a990c9aca065beba94fd9db031 Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Sat, 11 Oct 2025 11:13:03 +0200 Subject: [PATCH] Fix signing property check in build script Corrects the property name from 'signing.signingInMemoryKey' to 'signingInMemoryKey' in the signing condition to ensure proper detection of signing configuration. --- java/preprocessor/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/preprocessor/build.gradle.kts b/java/preprocessor/build.gradle.kts index fb5fe69d1..d58fa3e7b 100644 --- a/java/preprocessor/build.gradle.kts +++ b/java/preprocessor/build.gradle.kts @@ -50,7 +50,7 @@ mavenPublishing{ publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) // Only sign if signing is set up - if(project.hasProperty("signing.keyId") || project.hasProperty("signing.signingInMemoryKey")) + if(project.hasProperty("signing.keyId") || project.hasProperty("signingInMemoryKey")) signAllPublications() pom{