We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fbfdc9 commit ddad1e9Copy full SHA for ddad1e9
build.gradle.kts
@@ -4,6 +4,7 @@ plugins {
4
id("maven-publish")
5
id("signing")
6
id("com.github.ben-manes.versions") version ("0.38.0")
7
+ id("io.github.gradle-nexus.publish-plugin") version ("1.1.0")
8
}
9
10
val projectGroupId: String by project
@@ -170,3 +171,12 @@ signing {
170
171
172
sign(publishing.publications["OpenApiProcessor"])
173
174
+
175
+nexusPublishing {
176
+ repositories {
177
+ sonatype {
178
+ username.set(project.extra["publishUser"].toString())
179
+ password.set(project.extra["publishKey"].toString())
180
+ }
181
182
+}
0 commit comments