diff --git a/build.gradle b/build.gradle index 5273aa6..800b799 100644 --- a/build.gradle +++ b/build.gradle @@ -109,13 +109,7 @@ subprojects { artifacts { archives javadocJar, sourcesJar } - - if (project.hasProperty('signing.keyId')) { - signing { - sign configurations.archives - } - } - + apply from: "${rootProject.projectDir}/gradle/publish.gradle" spotbugs { diff --git a/gradle/publish.gradle b/gradle/publish.gradle index 8675487..4b652e4 100644 --- a/gradle/publish.gradle +++ b/gradle/publish.gradle @@ -5,22 +5,6 @@ ext { 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