ext { description = 'Extensions for Elasticsearch clients (node and transport)' scmUrl = 'https://github.com/jprante/elx' scmConnection = 'scm:git:git://github.com/jprante/elx.git' scmDeveloperConnection = 'scm:git:git://github.com/jprante/elx.git' } task xbibUpload(type: Upload, dependsOn: build) { group = 'publish' configuration = configurations.archives uploadDescriptor = true repositories { if (project.hasProperty("xbibUsername")) { mavenDeployer { configuration = configurations.wagon repository(url: uri(project.property('xbibUrl'))) { authentication(userName: xbibUsername, privateKey: xbibPrivateKey) } } } } } task sonaTypeUpload(type: Upload, dependsOn: build) { group = 'publish' configuration = configurations.archives uploadDescriptor = true repositories { if (project.hasProperty('ossrhUsername')) { mavenDeployer { beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) } repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2') { authentication(userName: ossrhUsername, password: ossrhPassword) } snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots') { authentication(userName: ossrhUsername, password: ossrhPassword) } pom.project { groupId project.group artifactId project.name version project.version name project.name description description packaging 'jar' inceptionYear '2019' url scmUrl organization { name 'xbib' url 'http://xbib.org' } developers { developer { id 'xbib' name 'Jörg Prante' email 'joergprante@gmail.com' url 'https://github.com/jprante' } } scm { url scmUrl connection scmConnection developerConnection scmDeveloperConnection } licenses { license { name 'The Apache License, Version 2.0' url 'http://www.apache.org/licenses/LICENSE-2.0.txt' } } } } } } } nexusStaging { packageGroup = "org.xbib" }