pmd (build): Bump build tool version

- bump version to 0.4
- bump ant to 1.8.2
- bump jdk to 1.6

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@7517 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Romain Pelisse
2011-12-05 23:14:39 +00:00
parent be76e8c414
commit 78c795a362

View File

@ -4,7 +4,7 @@
<groupId>pmd</groupId>
<artifactId>pmd-build</artifactId>
<name>PMD</name>
<version>0.3</version>
<version>0.4</version>
<description>
<![CDATA[
This small subproject regroup most of the stuff needed to build pmd.
@ -47,13 +47,23 @@ only if you modify the java code.
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>ant</groupId>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.6</version>
<version>1.8.2</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -69,12 +79,12 @@ only if you modify the java code.
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.5</targetJdk>
<targetJdk>1.6</targetJdk>
<rulesets>
<ruleset>http://pmd.svn.sourceforge.net/svnroot/pmd/trunk/pmd/rulesets/internal/dogfood.xml</ruleset>
</rulesets>
@ -84,6 +94,7 @@ only if you modify the java code.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.8</version>
<configuration>
<configLocation>etc/checkstyle-config.xml</configLocation>
</configuration>