Whoops! Meant to add both, actually. Will do this eve.
On 5/21/09, sebb <sebbaz@gmail.com> wrote:
> On 21/05/2009, psteitz@apache.org <psteitz@apache.org> wrote:
>> Author: psteitz
>> Date: Thu May 21 11:13:54 2009
>> New Revision: 777066
>>
>> URL: http://svn.apache.org/viewvc?rev=777066&view=rev
>> Log:
>> Added checkstyle and findbugs reports (for now).
>
> s/findbugs/PMD/ ?
>
>> Modified:
>> commons/proper/pool/trunk/pom.xml
>>
>> Modified: commons/proper/pool/trunk/pom.xml
>> URL:
>> http://svn.apache.org/viewvc/commons/proper/pool/trunk/pom.xml?rev=777066&r1=777065&r2=777066&view=diff
>>
>> ==============================================================================
>> --- commons/proper/pool/trunk/pom.xml (original)
>> +++ commons/proper/pool/trunk/pom.xml Thu May 21 11:13:54 2009
>> @@ -232,6 +232,28 @@
>> <minSeverity>info</minSeverity>
>> </configuration>
>> </plugin>
>> + <plugin>
>> + <groupId>org.apache.maven.plugins</groupId>
>> + <artifactId>maven-pmd-plugin</artifactId>
>> + <version>2.2</version>
>> + <configuration>
>> + <rulesets>
>> + <ruleset>checkstyle.xml</ruleset>
>> + </rulesets>
>> + <linkXref>true</linkXref>
>> + <targetJdk>1.5</targetJdk>
>> + </configuration>
>> + </plugin>
>> + <plugin>
>> + <groupId>org.apache.maven.plugins</groupId>
>> + <artifactId>maven-checkstyle-plugin</artifactId>
>> + <version>2.1</version>
>> + <configuration>
>> + <configLocation>${basedir}/checkstyle.xml</configLocation>
>> + <enableRulesSummary>false</enableRulesSummary>
>> + <headerFile>${basedir}/license-header.txt</headerFile>
>> + </configuration>
>> + </plugin>
>> </plugins>
>> </reporting>
>>
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
> For additional commands, e-mail: dev-help@commons.apache.org
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org
|