summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@gmail.com>2018-10-04 10:43:31 +0900
committerDavid Pursehouse <david.pursehouse@gmail.com>2018-10-08 13:51:47 +0900
commit8d040d6ba95dea7f4b3522ba9d8f18d488f8ec78 (patch)
tree84d985ee3799f82f7395b021b7781bd3cc0b403a /pom.xml
parent51d656586bcd1d72af5288ea78f8e6bffd2c8809 (diff)
downloadjgit-8d040d6ba95dea7f4b3522ba9d8f18d488f8ec78.tar.gz
jgit-8d040d6ba95dea7f4b3522ba9d8f18d488f8ec78.zip
Ensure same version of maven-surefire-plugin and maven-surefire-report-plugin
The version of maven-surefire-report-plugin was controlled by a project property, but the maven-surefire-plugin version was set explicitly. Rename maven-surefire-report-plugin-version to maven-surefire-version, and use the same property for both plugins' versions. Change-Id: Ib2aea36f3db969cd038c071d0cd35f9056642518 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 698bc14739..c4851268e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -217,7 +217,7 @@
<tycho-extras-version>1.2.0</tycho-extras-version>
<gson-version>2.8.2</gson-version>
<spotbugs-maven-plugin-version>3.1.6</spotbugs-maven-plugin-version>
- <maven-surefire-report-plugin-version>2.21.0</maven-surefire-report-plugin-version>
+ <maven-surefire-version>2.21.0</maven-surefire-version>
<maven-compiler-plugin-version>3.8.0</maven-compiler-plugin-version>
<!-- Properties to enable jacoco code coverage analysis -->
@@ -305,7 +305,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.21.0</version>
+ <version>${maven-surefire-version}</version>
<configuration>
<forkCount>${test-fork-count}</forkCount>
<reuseForks>true</reuseForks>
@@ -393,7 +393,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
- <version>${maven-surefire-report-plugin-version}</version>
+ <version>${maven-surefire-version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -570,7 +570,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
- <version>${maven-surefire-report-plugin-version}</version>
+ <version>${maven-surefire-version}</version>
<configuration>
<aggregate>true</aggregate>
<alwaysGenerateSurefireReport>false</alwaysGenerateSurefireReport>