Remove developers section from pom.xml and add licenses, organization, scm and issueManagement instead
Project: http://git-wip-us.apache.org/repos/asf/struts-examples/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-examples/commit/d75eb7af Tree: http://git-wip-us.apache.org/repos/asf/struts-examples/tree/d75eb7af Diff: http://git-wip-us.apache.org/repos/asf/struts-examples/diff/d75eb7af Branch: refs/heads/master Commit: d75eb7afb5142643bcaa85a8e3e70d55dbde4f56 Parents: 433ea01 Author: Johannes Geppert <[email protected]> Authored: Sun Jun 14 12:43:00 2015 +0200 Committer: Johannes Geppert <[email protected]> Committed: Sun Jun 14 12:43:00 2015 +0200 ---------------------------------------------------------------------- pom.xml | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts-examples/blob/d75eb7af/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e3c4943..96f3ff9 100644 --- a/pom.xml +++ b/pom.xml @@ -12,24 +12,38 @@ go with the Struts 2 Getting Started series of tutorials. </description> + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + <comments/> + </license> + </licenses> + + <organization> + <name>Apache Software Foundation</name> + <url>http://www.apache.org</url> + </organization> + + <scm> + <connection>scm:git:git://git.apache.org/struts.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/struts-examples.git</developerConnection> + <url>http://git.apache.org/struts-examples.git</url> + <tag>HEAD</tag> + </scm> + + <issueManagement> + <system>JIRA</system> + <url>https://issues.apache.org/jira/browse/WW</url> + </issueManagement> + <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <struts2.version>2.5-SNAPSHOT</struts2.version> <log4j2.version>2.3</log4j2.version> </properties> - <developers> - <developer> - <id>bphillips</id> - <name>Bruce Phillips</name> - <email>[email protected]</email> - <organization>Apache Struts 2 Committer</organization> - <roles> - <role>Committer</role> - </roles> - </developer> - </developers> - <repositories> <repository> <id>apache.snapshots</id>
