You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2011/02/04 23:52:06 UTC

svn commit: r1067318 - /maven/shared/trunk/maven-filtering/pom.xml

Author: dennisl
Date: Fri Feb  4 22:52:06 2011
New Revision: 1067318

URL: http://svn.apache.org/viewvc?rev=1067318&view=rev
Log:
o Add a JIRA report.

Modified:
    maven/shared/trunk/maven-filtering/pom.xml

Modified: maven/shared/trunk/maven-filtering/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-filtering/pom.xml?rev=1067318&r1=1067317&r2=1067318&view=diff
==============================================================================
--- maven/shared/trunk/maven-filtering/pom.xml (original)
+++ maven/shared/trunk/maven-filtering/pom.xml Fri Feb  4 22:52:06 2011
@@ -137,5 +137,33 @@
       </plugin>
     </plugins>
   </build>
-    
+
+  <profiles>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-changes-plugin</artifactId>
+            <version>2.4</version>
+            <configuration>
+              <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Created</columnNames>
+              <maxEntries>200</maxEntries>
+              <onlyCurrentVersion>true</onlyCurrentVersion>
+              <sortColumnNames>Key</sortColumnNames>
+              <versionPrefix>maven-filtering-</versionPrefix>
+            </configuration>
+            <reportSets>
+              <reportSet>
+                <reports>
+                  <report>jira-report</report>
+                </reports>
+              </reportSet>
+            </reportSets>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>