12 lines
348 B
Kotlin
12 lines
348 B
Kotlin
plugins {
|
|
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
|
|
}
|
|
|
|
nexusPublishing {
|
|
repositories {
|
|
sonatype {
|
|
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
|
|
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
|
|
}
|
|
}
|
|
} |