Author: olamy Date: Mon Aug 19 13:01:38 2013 New Revision: 1515393 URL: http://svn.apache.org/r1515393 Log: configure reporting: no need of cobertura, aggregate javadoc only from top
Modified: commons/sandbox/monitoring/trunk/pom.xml Modified: commons/sandbox/monitoring/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/monitoring/trunk/pom.xml?rev=1515393&r1=1515392&r2=1515393&view=diff ============================================================================== --- commons/sandbox/monitoring/trunk/pom.xml (original) +++ commons/sandbox/monitoring/trunk/pom.xml Mon Aug 19 13:01:38 2013 @@ -181,12 +181,35 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.7</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.3</version> <configuration> <targetJdk>${maven.compile.target}</targetJdk> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.9.1</version> + <inherited>false</inherited> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <version>2.5.2</version> + <reportSets> + <reportSet> + <reports> + <report></report> + </reports> + </reportSet> + </reportSets> + </plugin> </plugins> </reporting>