check for ossrhUsername in gradle build

This commit is contained in:
Jörg Prante 2021-05-24 22:53:50 +02:00
parent b04eec4f26
commit 83f9fd3745

View file

@ -53,7 +53,8 @@ if (project.hasProperty("signing.keyId")) {
} }
} }
nexusPublishing { if (project.hasProperty("ossrhUsername")) {
nexusPublishing {
repositories { repositories {
sonatype { sonatype {
username = project.property('ossrhUsername') username = project.property('ossrhUsername')
@ -61,4 +62,5 @@ nexusPublishing {
packageGroup = "org.xbib" packageGroup = "org.xbib"
} }
} }
}
} }