Skip to content

Commit

Permalink
ignore signing requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed May 25, 2024
1 parent 8d45e93 commit 467b131
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

plugins {
signing
id("com.vanniktech.maven.publish.base")
}

Expand Down Expand Up @@ -56,6 +57,12 @@ mavenPublishing {
}
}

// we ignore the singing requirement because:
// * we should be able to run `publishToMavenLocal` without signing;
// * signing is needed to Maven Central only, and it will anyway validate that the signature is present;
// * failure because of absent signature will anyway fail only on CI during publishing release;
signing.isRequired = false

// javadocJar setup
// we have a single javadoc artifact which is used for all publications,
// and so we need to manually create task dependencies to make Gradle happy
Expand Down

0 comments on commit 467b131

Please sign in to comment.