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 75d6c86 commit c13baffCopy full SHA for c13baff
build.gradle.kts
@@ -2,6 +2,7 @@ plugins {
2
`java-library`
3
idea
4
`maven-publish`
5
+ signing // restored for OSSRH
6
alias(libs.plugins.nexus.publish)
7
alias(libs.plugins.ben.manes.versions)
8
}
@@ -102,3 +103,12 @@ publishing {
102
103
104
105
106
+
107
+signing {
108
+ useInMemoryPgpKeys(
109
+ findProperty("signing.keyId") as String?,
110
+ findProperty("signingKey") as String?,
111
+ findProperty("signingPassword") as String?
112
+ )
113
+ sign(publishing.publications)
114
+}
0 commit comments