You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by nl...@apache.org on 2012/03/16 19:55:19 UTC

svn commit: r1301697 - /tiles/maven/trunk/pom/pom.xml

Author: nlebas
Date: Fri Mar 16 18:55:18 2012
New Revision: 1301697

URL: http://svn.apache.org/viewvc?rev=1301697&view=rev
Log:
Updated to org.apache:apache:10
Updated the list of committers/contributors
Regrouped the reporting plugins and updated them with current versions
Moved issue management to the poms in the various tiles projects


Modified:
    tiles/maven/trunk/pom/pom.xml

Modified: tiles/maven/trunk/pom/pom.xml
URL: http://svn.apache.org/viewvc/tiles/maven/trunk/pom/pom.xml?rev=1301697&r1=1301696&r2=1301697&view=diff
==============================================================================
--- tiles/maven/trunk/pom/pom.xml (original)
+++ tiles/maven/trunk/pom/pom.xml Fri Mar 16 18:55:18 2012
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
-    <version>9</version>
+    <version>10</version>
   </parent>
   <groupId>org.apache.tiles</groupId>
   <artifactId>tiles-master</artifactId>
@@ -47,11 +47,6 @@
     <url>http://www.apache.org</url>
   </organization>
 
-  <issueManagement>
-    <system>JIRA</system>
-    <url>https://issues.apache.org/jira/browse/TILES</url>
-  </issueManagement>
-
   <mailingLists>
     <mailingList>
       <name>Tiles User List</name>
@@ -162,6 +157,14 @@
         <role>Committer</role>
       </roles>
     </developer>
+    <developer>
+      <name>Nicolas Le Bas</name>
+      <id>nlebas</id>
+      <email>nlebas at apache.org</email>
+      <roles>
+        <role>Committer</role>
+      </roles>
+    </developer>
   </developers>
 
   <contributors>
@@ -201,6 +204,9 @@
     <contributor>
       <name>Zarick Lau</name>
     </contributor>
+    <contributor>
+      <name>Morten Lied Johansen</name>
+    </contributor>
   </contributors>
 
   <build>
@@ -208,31 +214,96 @@
       <plugins>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-release-plugin</artifactId>
-          <version>2.0</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-clean-plugin</artifactId>
-          <version>2.4.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-install-plugin</artifactId>
-          <version>2.3.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-site-plugin</artifactId>
-          <version>2.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-antrun-plugin</artifactId>
-          <version>1.4</version>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>1.6</source>
+            <target>1.6</target>
+          </configuration>
         </plugin>
       </plugins>
     </pluginManagement>
   </build>
 
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+                <version>2.12</version>
+            </plugin>
+            <plugin>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.9.1</version>
+                <configuration>
+                    <configLocation>http://svn.apache.org/repos/asf/tiles/maven/trunk/build/tiles_checks_v5.xml
+                    </configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-jxr-plugin</artifactId>
+                <version>2.3</version>
+            </plugin>
+            <plugin>
+                <artifactId>maven-pmd-plugin</artifactId>
+                <version>2.7.1</version>
+                <configuration>
+                  <targetJdk>1.5</targetJdk>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.8</version>
+                <reportSets>
+                    <reportSet>
+                        <id>aggregated</id>
+                        <configuration>
+                            <excludePackageNames>org.apache.tiles.test</excludePackageNames>
+                            <links>
+                                <link>http://docs.oracle.com/javase/6/docs/api</link>
+                                <link>http://docs.oracle.com/javaee/5/api</link>
+                                <link>http://commons.apache.org/chain/apidocs</link>
+                                <link>http://commons.apache.org/digester/commons-digester-1.6/docs/api</link>
+                                <link>http://www.slf4j.org/api</link>
+                            </links>
+                            <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
+                            <docletArtifact>
+                                <groupId>gr.spinellis</groupId>
+                                <artifactId>UmlGraph</artifactId>
+                                <version>4.6</version>
+                            </docletArtifact>
+                            <additionalparam>
+                                -inferrel -inferdep -quiet -hide java.*
+                                -collpackages java.util.* -qualify
+                                -postfixpackage -nodefontsize 9
+                                -nodefontpackagesize 7
+                            </additionalparam>
+                        </configuration>
+                        <reports>
+                            <report>aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>rat-maven-plugin</artifactId>
+                <version>1.0-alpha-3</version>
+                <configuration>
+                    <includes>
+                        <include>pom.xml</include>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>**/*LICENSE.txt</exclude>
+                        <exclude>**/*MANIFEST.MF</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>cobertura-maven-plugin</artifactId>
+                <version>2.5.1</version>
+            </plugin>
+        </plugins>
+    </reporting>
+
 </project>