Adds missing pom configuration
Project: http://git-wip-us.apache.org/repos/asf/struts-archetypes/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-archetypes/commit/d962e0d6 Tree: http://git-wip-us.apache.org/repos/asf/struts-archetypes/tree/d962e0d6 Diff: http://git-wip-us.apache.org/repos/asf/struts-archetypes/diff/d962e0d6 Branch: refs/heads/master Commit: d962e0d653615f3a3c7260d826d82868d16eb479 Parents: b41834e Author: Lukasz Lenart <lukasz.len...@gmail.com> Authored: Fri Oct 21 14:34:33 2016 +0200 Committer: Lukasz Lenart <lukasz.len...@gmail.com> Committed: Fri Oct 21 14:34:33 2016 +0200 ---------------------------------------------------------------------- pom.xml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts-archetypes/blob/d962e0d6/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 7d098d8..1a157da 100644 --- a/pom.xml +++ b/pom.xml @@ -34,6 +34,45 @@ <packaging>pom</packaging> <name>Struts 2 Maven Archetypes</name> + <scm> + <connection>scm:git:git://git.apache.org/struts-archetypes.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/struts-archetypes.git</developerConnection> + <url>http://git.apache.org/struts-archetypes.git</url> + <tag>HEAD</tag> + </scm> + + <issueManagement> + <system>JIRA</system> + <url>https://issues.apache.org/jira/browse/WW</url> + </issueManagement> + + <ciManagement> + <system>Jenkins</system> + <url>https://builds.apache.org/hudson/view/S-Z/view/Struts</url> + <notifiers> + <notifier> + <type>mail</type> + <configuration> + <address>d...@struts.apache.org</address> + </configuration> + </notifier> + </notifiers> + </ciManagement> + + <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> + <modules> <module>struts2-archetype-angularjs</module> <module>struts2-archetype-blank</module> @@ -58,6 +97,14 @@ <generateReports>false</generateReports> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.7</source> + <target>1.7</target> + </configuration> + </plugin> </plugins> </build>