We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e7960 commit d70eb9dCopy full SHA for d70eb9d
1 file changed
build.gradle
@@ -125,6 +125,7 @@ javadoc {
125
}
126
127
signing {
128
+ def signingKeyId = System.getenv("GPG_KEY_NAME")
129
useGpgCmd()
130
sign(publishing.publications)
131
@@ -176,8 +177,8 @@ publishing {
176
177
nexusPublishing {
178
repositories {
179
sonatype {
- nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
180
- snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
+ nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
181
+ snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
182
username = System.getenv("OSSRH_USER")
183
password = System.getenv("OSSRH_PASSWORD")
184
0 commit comments