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 4af9a98 commit 17ee900Copy full SHA for 17ee900
build.gradle.kts
@@ -10,7 +10,12 @@ plugins {
10
11
nexusPublishing {
12
repositories {
13
- sonatype()
+ sonatype {
14
+ nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
15
+ snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
16
+ username.set(System.getenv("NEXUS_USERNAME"))
17
+ password.set(System.getenv("NEXUS_PASSWORD"))
18
+ }
19
}
20
21
0 commit comments