diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-07-21 20:16:38 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-07-21 20:16:38 +0000 |
commit | 2d44904c6d06d63073d2ca5c392769cf3d097875 (patch) | |
tree | 2997d19ebdf8067abb39f53a61800593dfd5f009 /build.gradle | |
parent | f9ec9fc3f2be36e48b71bf48ee4def12b9e41d6f (diff) | |
download | poi-2d44904c6d06d63073d2ca5c392769cf3d097875.tar.gz poi-2d44904c6d06d63073d2ca5c392769cf3d097875.zip |
update pom logic
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902923 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 26219df2dc..b0e7d8d2bd 100644 --- a/build.gradle +++ b/build.gradle @@ -486,13 +486,13 @@ subprojects { name = 'POI Users List' subscribe = 'user-subscribe@poi.apache.org' unsubscribe = 'user-unsubscribe@poi.apache.org' - archive = 'http://mail-archives.apache.org/mod_mbox/poi-user/' + archive = 'https://lists.apache.org/list.html?user@poi.apache.org' } mailingList { name = 'POI Developer List' subscribe = 'dev-subscribe@poi.apache.org' unsubscribe = 'dev-unsubscribe@poi.apache.org' - archive = 'http://mail-archives.apache.org/mod_mbox/poi-dev/' + archive = 'https://lists.apache.org/list.html?dev@poi.apache.org' } } @@ -509,6 +509,20 @@ subprojects { url = 'http://www.apache.org/' } + issueManagement { + system = 'bugzilla' + url = 'https://bz.apache.org/bugzilla' + } + + developers { + developer { + name = 'POI Team' + id = 'poi' + email = 'user@poi.apache.org' + organization = 'Apache POI' + } + } + withXml { def r = asElement() def doc = r.getOwnerDocument() |