Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-03-15 12:34:21 +0000
committerAlexander Kurtakov2021-03-15 12:34:21 +0000
commitf80506f05117d53cd2bef285490333893f448510 (patch)
tree44c15a0adc1182f4638e481ffe2921efa8eba081
parent1c41249a242b0831904399b09d64486d4a470f25 (diff)
downloadeclipse.platform.releng.aggregator-f80506f05117d53cd2bef285490333893f448510.tar.gz
eclipse.platform.releng.aggregator-f80506f05117d53cd2bef285490333893f448510.tar.xz
eclipse.platform.releng.aggregator-f80506f05117d53cd2bef285490333893f448510.zip
Bug 571950 - Define maven-surefire-plugin version in parent]
Use property for surefire version to allow easily referencing to matching version surefire components. Change-Id: I64ad1cb907ec48ba352441c3e44ca4c984955880 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--eclipse-platform-parent/pom.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 7b4d8c922..fe938a41a 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -74,6 +74,7 @@
<tycho.version>2.3.0-SNAPSHOT</tycho.version>
<cbi-plugins.version>1.1.8-SNAPSHOT</cbi-plugins.version>
+ <surefire.version>3.0.0-M5</surefire.version>
<!--
The tycho-eclipserun-plugin will create its instance of Eclipse from this
@@ -425,7 +426,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>3.0.0-M5</version>
+ <version>${surefire.version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>

Back to the top