You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ih...@apache.org on 2012/08/21 08:24:47 UTC

svn commit: r1375392 - /logging/log4php/trunk/pom.xml

Author: ihabunek
Date: Tue Aug 21 06:24:45 2012
New Revision: 1375392

URL: http://svn.apache.org/viewvc?rev=1375392&view=rev
Log:
Restored POM settings which were accidentally removed in previous commit. Updated maven plugin to latest versions.

Modified:
    logging/log4php/trunk/pom.xml

Modified: logging/log4php/trunk/pom.xml
URL: http://svn.apache.org/viewvc/logging/log4php/trunk/pom.xml?rev=1375392&r1=1375391&r2=1375392&view=diff
==============================================================================
--- logging/log4php/trunk/pom.xml (original)
+++ logging/log4php/trunk/pom.xml Tue Aug 21 06:24:45 2012
@@ -166,14 +166,78 @@
 				</dependencies>
 				
 				<executions>
-				
+					<execution>
+						<id>pear-package</id>
+						<phase>package</phase>
+						<configuration>
+							<target>
+								<ant target="pear-package" />
+							</target>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+
+					<execution>
+						<id>pre-site</id>
+						<phase>pre-site</phase>
+						<configuration>
+							<target>
+								<ant target="google-search" />
+								<ant target="api-docs" />
+							</target>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+					
+					<execution>
+						<id>unit-testing</id>
+						<phase>test</phase>
+						<configuration>
+							<target>
+								<ant target="unit-testing" />
+							</target>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+					
+					<execution>
+						<id>post-site</id>
+						<phase>post-site</phase>
+						<configuration>
+							<target>
+								<ant target="post-site" />
+							</target>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+					
+					<execution>
+						<id>site-deploy</id>
+						<phase>site-deploy</phase>
+						<configuration>
+							<target>
+								<ant target="site-deploy" />
+							</target>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
 				</executions>
 			</plugin>
 			
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-surefire-plugin</artifactId>
-				<version>2.12</version>
+				<version>2.12.2</version>
 				<configuration>
 					<workingDirectory>target</workingDirectory>
 				</configuration>
@@ -220,6 +284,59 @@
 
 					<!-- Configure additional reports on the site -->
 					<reportPlugins>
+
+						<!-- Project info report -->
+						<plugin>
+							<groupId>org.apache.maven.plugins</groupId>
+							<artifactId>maven-project-info-reports-plugin</artifactId>
+							<version>2.5</version>
+							<reportSets>
+								<reportSet>
+									<reports>
+										<report>cim</report>	
+										<report>scm</report>
+										<report>dependencies</report>
+										<report>license</report>
+										<report>project-team</report>
+										<report>issue-tracking</report>
+										<report>mailing-list</report>
+									</reports>
+								</reportSet>
+							</reportSets>
+						</plugin>
+						
+						<!-- Changes report -->
+						<plugin>
+							<groupId>org.apache.maven.plugins</groupId>
+							<artifactId>maven-changes-plugin</artifactId>
+							<version>2.7.1</version>
+							<reportSets>
+								<reportSet>
+									<reports>
+										<report>changes-report</report>
+										<report>jira-report</report>
+									</reports>
+								</reportSet>
+							</reportSets>
+							<configuration>
+								<statusIds>Resolved, Closed</statusIds>
+								<columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix Version</columnNames>
+							</configuration>
+						</plugin>
+						
+						<!-- Surefire report -->
+						<plugin>
+							<groupId>org.apache.maven.plugins</groupId>
+							<artifactId>maven-surefire-report-plugin</artifactId>
+							<version>2.12.2</version>
+						</plugin>
+			
+						<!-- RAT report -->
+						<plugin>
+							<groupId>org.apache.rat</groupId>
+							<artifactId>apache-rat-plugin</artifactId>
+							<version>0.8</version>
+						</plugin>
 					</reportPlugins>
 				</configuration>
 			</plugin>