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 ca7c17e commit 6c7aeafCopy full SHA for 6c7aeaf
build.gradle
@@ -34,12 +34,16 @@ tasks.named("githubRelease") {
34
githubToken = System.getenv("GITHUB_TOKEN")
35
newTagRevision = System.getenv("GITHUB_SHA")
36
releaseTag = project.version
37
+ releaseName = project.version
38
}
39
40
nexusPublishing {
41
repositories {
42
if (System.getenv("NEXUS_TOKEN_PWD")) {
- sonatype {
43
+ sonatype { // Publishing to: https://s01.oss.sonatype.org (faster instance)
44
+ nexusUrl = uri("https://s01.oss.sonatype.org/service/local/")
45
+ snapshotRepositoryUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
46
+
47
username = System.getenv("NEXUS_TOKEN_USER")
48
password = System.getenv("NEXUS_TOKEN_PWD")
49
0 commit comments