You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2013/04/22 19:11:38 UTC

svn commit: r1470620 - /accumulo/branches/1.5/pom.xml

Author: ctubbsii
Date: Mon Apr 22 17:11:38 2013
New Revision: 1470620

URL: http://svn.apache.org/r1470620
Log:
ACCUMULO-1315 Fix changes plugin, so it correctly queries the report at the command line and during site building

Modified:
    accumulo/branches/1.5/pom.xml

Modified: accumulo/branches/1.5/pom.xml
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/pom.xml?rev=1470620&r1=1470619&r2=1470620&view=diff
==============================================================================
--- accumulo/branches/1.5/pom.xml (original)
+++ accumulo/branches/1.5/pom.xml Mon Apr 22 17:11:38 2013
@@ -329,6 +329,21 @@
           </configuration>
         </plugin>
         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-changes-plugin</artifactId>
+          <version>2.9</version>
+          <configuration>
+            <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
+            <issueManagementSystems>
+              <issueManagementSystem>JIRA</issueManagementSystem>
+            </issueManagementSystems>
+            <onlyCurrentVersion>true</onlyCurrentVersion>
+            <statusIds>Closed,Resolved</statusIds>
+            <maxEntries>10000</maxEntries>
+            <useJql>true</useJql>
+          </configuration>
+        </plugin>
+        <plugin>
           <artifactId>maven-clean-plugin</artifactId>
           <configuration>
             <filesets>
@@ -383,6 +398,7 @@
           </configuration>
         </plugin>
         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
           <configuration>
             <encoding>UTF-8</encoding>
@@ -608,17 +624,10 @@
   </build>
   <reporting>
     <plugins>
-      <!--
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-changes-plugin</artifactId>
         <version>2.9</version>
-        <configuration>
-          <onlyCurrentVersion>true</onlyCurrentVersion>
-          <statusIds>resolved</statusIds>
-          <maxEntries>10000</maxEntries>
-          <useJql>true</useJql>
-        </configuration>
         <reportSets>
           <reportSet>
             <reports>
@@ -627,7 +636,6 @@
           </reportSet>
         </reportSets>
       </plugin>
-      -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>