datastructures/gradle/publishing/sonatype.gradle
2020-09-12 22:42:03 +02:00

12 lines
326 B
Groovy

import java.time.Duration
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
apply plugin: 'io.codearte.nexus-staging'
nexusStaging {
username = project.property('ossrhUsername')
password = project.property('ossrhPassword')
packageGroup = "org.xbib"
}
}