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.
2 parents 03c8a8e + 0722e5c commit 661bbecCopy full SHA for 661bbec
build.gradle
@@ -167,6 +167,10 @@ configure(webAuthn4JSpringSecurityLibraryProjects) {
167
sign publishing.publications.standard
168
}
169
170
+ tasks.withType(Sign) {
171
+ onlyIf { pgpSigningKey != null && pgpSigningKeyPassphrase != null }
172
+ }
173
+
174
publishStandardPublicationToSnapshotRepository.onlyIf { webAuthn4JSpringSecurityVersion.endsWith("-SNAPSHOT") }
175
publishStandardPublicationToMavenCentralRepository.onlyIf { !webAuthn4JSpringSecurityVersion.endsWith("-SNAPSHOT") }
176
0 commit comments