This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0b5e2d7747f9b30d9cdfdbd6797a7f4f1f008751 Author: Peter Palaga <[email protected]> AuthorDate: Tue Jul 4 21:55:55 2023 +0200 Manage surefire and failsafe plugins under the same version property because they are always released together --- components/pom.xml | 4 ---- parent/pom.xml | 1 - pom.xml | 3 +-- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/components/pom.xml b/components/pom.xml index 90818694d6c..85be12185c9 100644 --- a/components/pom.xml +++ b/components/pom.xml @@ -468,7 +468,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>${maven-surefire-plugin-version}</version> <configuration> <skipTests>${skipTests.s390x}</skipTests> </configuration> @@ -476,7 +475,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> - <version>${maven-failsafe-plugin-version}</version> <configuration> <skipITs>${skipITs.s390x}</skipITs> </configuration> @@ -496,7 +494,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>${maven-surefire-plugin-version}</version> <configuration> <skipTests>${skipTests.ppc64le}</skipTests> </configuration> @@ -504,7 +501,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> - <version>${maven-failsafe-plugin-version}</version> <configuration> <skipITs>${skipITs.ppc64le}</skipITs> </configuration> diff --git a/parent/pom.xml b/parent/pom.xml index d453597b958..c524e345a35 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -3373,7 +3373,6 @@ <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> - <version>${maven-surefire-plugin-version}</version> <configuration> <systemPropertyVariables> <!-- By default Java's secure RNG uses /dev/random to generate seeds. In diff --git a/pom.xml b/pom.xml index 96a57c89728..8769455cb0a 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,6 @@ <maven-javadoc-plugin-version>3.5.0</maven-javadoc-plugin-version> <maven-remote-resources-plugin-version>3.1.0</maven-remote-resources-plugin-version> <maven-surefire-plugin-version>3.1.2</maven-surefire-plugin-version> - <maven-failsafe-plugin-version>3.1.2</maven-failsafe-plugin-version> <!-- we need to override the version inherited from Apache POM for modules that use this POM as parent --> <surefire.version>${maven-surefire-plugin-version}</surefire.version> @@ -426,7 +425,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> - <version>${maven-failsafe-plugin-version}</version> + <version>${maven-surefire-plugin-version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
