diff options
author | Chris Aniszczyk <caniszczyk@gmail.com> | 2010-10-14 09:26:46 -0700 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2010-10-23 12:26:00 +0200 |
commit | 241ab2273557185c2b76cedca5a133055ab6e39a (patch) | |
tree | 90b89ed122855f2cf13a2b585782de42fc5284b4 /pom.xml | |
parent | d00420ae6ec47419567493ee40b8cfa6525ad93d (diff) | |
download | jgit-241ab2273557185c2b76cedca5a133055ab6e39a.tar.gz jgit-241ab2273557185c2b76cedca5a133055ab6e39a.zip |
Add FindBugs and CPD to the build.
We need to use findbugs-maven-plugin:2.3.2-SNAPSHOT
since otherwise build fails with maven-3.0 [1], [2].
We should switch to the release version as soon
as this becomes available.
[1] http://www.sonatype.com/people/2010/10/maven-3-0-has-landed/
[2] http://jira.codehaus.org/browse/MFINDBUGS-122
Bug: 327799
Change-Id: I1c57f81cf6f0450e56411881488c4ee754e458e3
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -137,6 +137,16 @@ <jetty-version>7.0.1.v20091125</jetty-version> </properties> + <pluginRepositories> + <pluginRepository> + <!-- need maven-findbugs-2.3.2-SNAPSHOT, see + http://jira.codehaus.org/browse/MFINDBUGS-122 + remove this when this version is released --> + <id>codehaus.snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + </pluginRepository> + </pluginRepositories> + <build> <pluginManagement> <plugins> @@ -202,6 +212,21 @@ <artifactId>build-helper-maven-plugin</artifactId> <version>1.5</version> </plugin> + + <plugin> + <!-- need maven-findbugs-2.3.2-SNAPSHOT, see + http://jira.codehaus.org/browse/MFINDBUGS-122 + switch to released version when available --> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>2.3.2-SNAPSHOT</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <version>2.5</version> + </plugin> </plugins> </pluginManagement> |