Repository: zest-java Updated Branches: refs/heads/develop 59e9d867f -> 298282644
ZEST-24 Fix POM content customization Project: http://git-wip-us.apache.org/repos/asf/zest-java/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/29828264 Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/29828264 Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/29828264 Branch: refs/heads/develop Commit: 298282644b7b4a5109a1bb27cd8f3254fc290a06 Parents: 59e9d86 Author: Paul Merlin <[email protected]> Authored: Sat Jul 25 14:33:10 2015 +0200 Committer: Paul Merlin <[email protected]> Committed: Sat Jul 25 14:33:10 2015 +0200 ---------------------------------------------------------------------- build.gradle | 2 +- maven-compat.gradle | 470 ++++++++++++++++++++++++----------------------- 2 files changed, 238 insertions(+), 234 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-java/blob/29828264/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 55b1208..f342ad4 100644 --- a/build.gradle +++ b/build.gradle @@ -45,7 +45,6 @@ apply plugin: 'idea' apply plugin: 'signing' apply plugin: 'maven' apply plugin: 'maven-publish-auth' -apply from: 'maven-compat.gradle' apply plugin: 'project-report' apply from: 'libraries.gradle' apply plugin: 'org.nosphere.apache.rat' @@ -425,6 +424,7 @@ allprojects { } } } + apply from: "$rootProject.projectDir/maven-compat.gradle" apply plugin: 'maven-publish-auth' // Bug in maven-publish-auth require apply after uploadArchives setup idea.module.iml { http://git-wip-us.apache.org/repos/asf/zest-java/blob/29828264/maven-compat.gradle ---------------------------------------------------------------------- diff --git a/maven-compat.gradle b/maven-compat.gradle index c2fec45..0387818 100644 --- a/maven-compat.gradle +++ b/maven-compat.gradle @@ -17,262 +17,266 @@ * under the License. */ -apply plugin: 'maven' - // See http://maven.apache.org/pom/asf/ -pom { +uploadArchives { + repositories.mavenDeployer { - project { - url 'https://zest.apache.org/' - organization { - name 'The Apache Software Foundation' - url 'https://apache.org/' - } - inceptionYear '2007' - issueManagement { - system 'jira' - url 'https://issues.apache.org/jira/browse/ZEST' - } - scm { - url "https://github.com/apache/zest-qi4j" - connection "scm:git:https://git-wip-us.apache.org/repos/asf/zest-qi4j.git" - developerConnection "scm:git:https://git-wip-us.apache.org/repos/asf/zest-qi4j.git" - } - licenses { - license { - name 'Apache License, version 2.0.' - url 'http://www.apache.org/licenses/LICENSE-2.0' - } - } - mailingLists { - mailingList { - name 'Users List' - subscribe '[email protected]' - unsubscribe '[email protected]' - post '[email protected]' - archive 'https://mail-archives.apache.org/mod_mbox/zest-users/' - otherArchives { - otherArchive 'https://www.apache.org/foundation/mailinglists.html#archives' - } - } - mailingList { - name 'Development List' - subscribe '[email protected]' - unsubscribe '[email protected]' - post '[email protected]' - archive 'https://mail-archives.apache.org/mod_mbox/zest-dev/' - otherArchives { - otherArchive 'https://www.apache.org/foundation/mailinglists.html#archives' - } - } - mailingList { - name 'Commits List' - subscribe '[email protected]' - unsubscribe '[email protected]' - post '[email protected]' - archive 'https://mail-archives.apache.org/mod_mbox/zest-commits/' - otherArchives { - otherArchive 'https://www.apache.org/foundation/mailinglists.html#archives' - } - } - } - developers { - developer { - id '[email protected]' - name 'Niclas Hedhman' - email '[email protected]' - roles { - role 'Core Team' + pom { + + project { + url 'https://zest.apache.org/' + organization { + name 'The Apache Software Foundation' + url 'https://apache.org/' } - organizationUrl 'http://www.qi4j.org' - timezone 'UTC+8' - } - developer { - id 'rickardoberg' - name 'Rickard \u00F6berg' - email '[email protected]' - roles { - role 'Core Team' + inceptionYear '2007' + issueManagement { + system 'jira' + url 'https://issues.apache.org/jira/browse/ZEST' } - url 'http://www.neotechnology.com' - organization 'Neo Technology AB' - organizationUrl 'http://www.neotechnology.com' - timezone 'UTC+8' - } - developer { - id '[email protected]' - name 'Edward Yakop' - email '[email protected]' - roles { - role 'Core Team' + scm { + url "https://github.com/apache/zest-java" + connection "scm:git:https://git-wip-us.apache.org/repos/asf/zest-java.git" + developerConnection "scm:git:https://git-wip-us.apache.org/repos/asf/zest-java.git" } - organizationUrl 'http://www.qi4j.org' - timezone 'UTC+8' - } - developer { - id '[email protected]' - name 'Alin Dreghiciu' - email '[email protected]' - roles { - role 'Core Team' + licenses { + license { + name 'Apache License, version 2.0.' + url 'http://www.apache.org/licenses/LICENSE-2.0' + } } - organizationUrl 'http://www.qi4j.org' - timezone 'UTC+2' - } - developer { - id 'mesirii' - name 'Michael Hunger' - email '[email protected]' - roles { - role 'Core Team' + mailingLists { + mailingList { + name 'Users List' + subscribe '[email protected]' + unsubscribe '[email protected]' + post '[email protected]' + archive 'https://mail-archives.apache.org/mod_mbox/zest-users/' + otherArchives { + otherArchive 'https://www.apache.org/foundation/mailinglists.html#archives' + } + } + mailingList { + name 'Development List' + subscribe '[email protected]' + unsubscribe '[email protected]' + post '[email protected]' + archive 'https://mail-archives.apache.org/mod_mbox/zest-dev/' + otherArchives { + otherArchive 'https://www.apache.org/foundation/mailinglists.html#archives' + } + } + mailingList { + name 'Commits List' + subscribe '[email protected]' + unsubscribe '[email protected]' + post '[email protected]' + archive 'https://mail-archives.apache.org/mod_mbox/zest-commits/' + otherArchives { + otherArchive 'https://www.apache.org/foundation/mailinglists.html#archives' + } + } } - timezone 'CET' - } + developers { + developer { + id '[email protected]' + name 'Niclas Hedhman' + email '[email protected]' + roles { + role 'Core Team' + } + organizationUrl 'http://www.qi4j.org' + timezone 'UTC+8' + } + developer { + id 'rickardoberg' + name 'Rickard \u00F6berg' + email '[email protected]' + roles { + role 'Core Team' + } + url 'http://www.neotechnology.com' + organization 'Neo Technology AB' + organizationUrl 'http://www.neotechnology.com' + timezone 'UTC+8' + } + developer { + id '[email protected]' + name 'Edward Yakop' + email '[email protected]' + roles { + role 'Core Team' + } + organizationUrl 'http://www.qi4j.org' + timezone 'UTC+8' + } + developer { + id '[email protected]' + name 'Alin Dreghiciu' + email '[email protected]' + roles { + role 'Core Team' + } + organizationUrl 'http://www.qi4j.org' + timezone 'UTC+2' + } + developer { + id 'mesirii' + name 'Michael Hunger' + email '[email protected]' + roles { + role 'Core Team' + } + timezone 'CET' + } - developer { - id "muhdkamil" - name "Muhd Kamil bin Mohd Baki" - roles { - role 'Platform Team' - } - timezone "UTC+8" - } + developer { + id "muhdkamil" + name "Muhd Kamil bin Mohd Baki" + roles { + role 'Platform Team' + } + timezone "UTC+8" + } - developer { - id "[email protected]" - name "David Leangen" - organization "Bioscene" - email "[email protected]" - roles { - role 'Platform Team' - } - timezone "UTC+9" - } + developer { + id "[email protected]" + name "David Leangen" + organization "Bioscene" + email "[email protected]" + roles { + role 'Platform Team' + } + timezone "UTC+9" + } - developer { - id "[email protected]" - name "Sonny Gill" - email "[email protected]" - roles { - role 'Community Team' - } - timezone "UTC+8" - } + developer { + id "[email protected]" + name "Sonny Gill" + email "[email protected]" + roles { + role 'Community Team' + } + timezone "UTC+8" + } - developer { - id "taowen" - name "Tao Wen" - organization "" - email "[email protected]" - roles { - role 'Community Team' - } - timezone "UTC+8" - } + developer { + id "taowen" + name "Tao Wen" + organization "" + email "[email protected]" + roles { + role 'Community Team' + } + timezone "UTC+8" + } - developer { - id "thobe" - name "Tobias Ivarsson" - email "[email protected]" - url "http://www.neotechnology.com" - organization "NeoTechnology" - organizationUrl "http://www.neotechnology.com" - roles { - role "Platform Team" - } - timezone "CET" - } + developer { + id "thobe" + name "Tobias Ivarsson" + email "[email protected]" + url "http://www.neotechnology.com" + organization "NeoTechnology" + organizationUrl "http://www.neotechnology.com" + roles { + role "Platform Team" + } + timezone "CET" + } - developer { - id "boon" - name "Lan Boon Ping" - email "[email protected]" - roles { - role 'Platform Team' - } - timezone "UTC+8" - } + developer { + id "boon" + name "Lan Boon Ping" + email "[email protected]" + roles { + role 'Platform Team' + } + timezone "UTC+8" + } - developer { - id "[email protected]" - name "Jan Kronquist" - email "[email protected]" - organization "Jayway" - roles { - role 'Platform Team' - } - timezone "CET" - } + developer { + id "[email protected]" + name "Jan Kronquist" + email "[email protected]" + organization "Jayway" + roles { + role 'Platform Team' + } + timezone "CET" + } - developer { - id "nmwael" - name "Nino Saturnino Martinez Vazquez Wael" - roles { - role 'Platform Team' - } - timezone "CET" - } + developer { + id "nmwael" + name "Nino Saturnino Martinez Vazquez Wael" + roles { + role 'Platform Team' + } + timezone "CET" + } - developer { - id "[email protected]" - name "Peter Neubauer" - email "[email protected]" - roles { - role 'Platform Team' - } - timezone "CET" - } + developer { + id "[email protected]" + name "Peter Neubauer" + email "[email protected]" + roles { + role 'Platform Team' + } + timezone "CET" + } - developer { - id "rwallace" - name "Richard Wallace" - email "[email protected]" - roles { - role 'Platform Team' - } - timezone "UTC-7" - } + developer { + id "rwallace" + name "Richard Wallace" + email "[email protected]" + roles { + role 'Platform Team' + } + timezone "UTC-7" + } - developer { - id "[email protected]" - name "Sianny Halim" - email "[email protected]" - roles { - role 'Platform Team' - } - timezone "UTC+8" - } + developer { + id "[email protected]" + name "Sianny Halim" + email "[email protected]" + roles { + role 'Platform Team' + } + timezone "UTC+8" + } - developer { - id "[email protected]" - name "Paul Merlin" - email "[email protected]" - roles { - role 'Core Team' - } - timezone "CET" - } + developer { + id "[email protected]" + name "Paul Merlin" + email "[email protected]" + roles { + role 'Core Team' + } + timezone "CET" + } - developer { - id "[email protected]" - name "Stanislav Muhametsin" - email "[email protected]" - roles { - role 'Platform Team' - } - timezone "UTC+2" - } + developer { + id "[email protected]" + name "Stanislav Muhametsin" + email "[email protected]" + roles { + role 'Platform Team' + } + timezone "UTC+2" + } - developer { - id "tonny" - name "Tonny Kohar" - roles { - role "Community Team" + developer { + id "tonny" + name "Tonny Kohar" + roles { + role "Community Team" + } + email "[email protected]" + timezone "UTC+7" + } } - email "[email protected]" - timezone "UTC+7" } } - } + + } }
