bdk-ffi/bdk-jvm/build.gradle.kts
2022-09-20 19:43:17 -04:00

18 lines
526 B
Plaintext

plugins {
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
}
nexusPublishing {
repositories {
create("sonatype") {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
val ossrhUsername: String? by project
val ossrhPassword: String? by project
username.set(ossrhUsername)
password.set(ossrhPassword)
}
}
}