Skip to content
This repository was archived by the owner on Mar 10, 2025. It is now read-only.

Commit 5df432e

Browse files
committed
Fixed sign artifacts
1 parent 493486a commit 5df432e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ dependencies {
5454
documentation "com.github.javaparser:javaparser-core:3.15.14"
5555
}
5656

57+
ext."signing.keyId" = project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : System.getenv('SIGNING_KEY')
58+
ext."signing.secretKeyRingFile" = project.hasProperty("signing.secretKeyRingFile") ? project.getProperty('signing.secretKeyRingFile') : "${System.properties['user.home']}${File.separator}.gnupg${File.separator}secring.gpg"
59+
ext."signing.password" = project.hasProperty("signing.password") ? project.getProperty('signing.password') : System.getenv('SIGNING_PASSPHRASE')
5760
ext.isSnapshot = project.projectVersion.endsWith('-SNAPSHOT')
5861
ext.isReleaseVersion = !isSnapshot
5962

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
projectVersion=2.0.0-RC2
1+
projectVersion=2.0.0-SNAPSHOT
22
grailsVersion=5.3.2
33
grailsGradlePluginVersion=5.3.0
44
groovyVersion=3.0.11

0 commit comments

Comments
 (0)