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 5a9141e commit 0fc5fc8Copy full SHA for 0fc5fc8
build.gradle
@@ -124,6 +124,18 @@ subprojects {
124
}
125
126
127
+nexusPublishing {
128
+ packageGroup = groupId
129
+ repositories {
130
+ sonatype {
131
+ username = System.getenv("OSS_USERNAME")
132
+ password = System.getenv("OSS_PASSWORD")
133
+ nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
134
+ snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
135
+ }
136
137
+}
138
+
139
subprojects {
140
apply plugin: "maven-publish"
141
apply plugin: "org.sonarqube"
0 commit comments