Fix signing property check in build script (#1266)

Corrects the property name from 'signing.signingInMemoryKey' to 'signingInMemoryKey' in the signing condition to ensure proper detection of signing configuration.
This commit is contained in:
Stef Tervelde
2025-10-14 05:04:46 +02:00
committed by GitHub
parent ea6783d878
commit 845cb0c07e

View File

@@ -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{