We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c18b2f commit 1cc687fCopy full SHA for 1cc687f
build.gradle
@@ -182,6 +182,7 @@ publishing {
182
}
183
184
signing {
185
+ required { !'true'.equalsIgnoreCase(project.findProperty('signingDisabled')) }
186
def signingKey = System.getenv("PGP_SECRET")
187
def signingPassword = System.getenv("PGP_PASSPHRASE")
188
useInMemoryPgpKeys(signingKey, signingPassword)
jitpack.yml
@@ -1,4 +1,4 @@
1
jdk:
2
- openjdk8
3
install:
4
- - ./gradlew clean build publishToMavenLocal -x signMavenJavaPublication
+ - ./gradlew clean build publishToMavenLocal -PsigningDisabled=true
0 commit comments