Skip to content

Commit 845cb0c

Browse files
authored
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.
1 parent ea6783d commit 845cb0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/preprocessor/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ mavenPublishing{
5050
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
5151

5252
// Only sign if signing is set up
53-
if(project.hasProperty("signing.keyId") || project.hasProperty("signing.signingInMemoryKey"))
53+
if(project.hasProperty("signing.keyId") || project.hasProperty("signingInMemoryKey"))
5454
signAllPublications()
5555

5656
pom{

0 commit comments

Comments
 (0)