Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-22 10:08:44 +0000
committerUwe Stieber2012-02-22 10:09:24 +0000
commit89d6f92023571d1407b6bae25558136e5f018e14 (patch)
tree05ac79c1e50a7d039d381968b11752dbf1b2a058 /pom.xml
parentc497a714a65b51b1dcacddf4bff720f47c97576b (diff)
downloadorg.eclipse.tcf-89d6f92023571d1407b6bae25558136e5f018e14.tar.gz
org.eclipse.tcf-89d6f92023571d1407b6bae25558136e5f018e14.tar.xz
org.eclipse.tcf-89d6f92023571d1407b6bae25558136e5f018e14.zip
Releng: Make the findbugs-maven-version configurable
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 92425e038..6090d93ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,6 +23,7 @@
<tm-version>3.3</tm-version>
<tm-site>http://download.eclipse.org/tm/updates/${tm-version}</tm-site>
<rxtx-site>http://rxtx.qbang.org/eclipse</rxtx-site>
+ <findbugs-maven-version>2.4.1-SNAPSHOT</findbugs-maven-version>
</properties>
<licenses>
@@ -201,7 +202,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
- <version>2.4.0</version>
+ <version>${findbugs-maven-version}</version>
<configuration>
<encoding>UTF-8</encoding>
<effort>Max</effort>
@@ -268,7 +269,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
- <version>2.4.0</version>
+ <version>${findbugs-maven-version}</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>

Back to the top