This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit cc664f77c58a206a9c3df9fae25b058bc7780ddc Author: Croway <[email protected]> AuthorDate: Tue Mar 31 10:53:15 2026 +0200 Upgrade maven-surefire/failsafe plugins from 3.2.5 to 3.5.4 Surefire 3.2.5 is incompatible with JUnit 5.13.4 (inherited from camel-parent 4.18.0): its surefire-junit-platform provider pulls in an older junit-platform-commons that lacks CollectionUtils.toUnmodifiableList(), causing NoSuchMethodError during test discovery. Align with the version used by camel-parent. --- parent/pom.xml | 6 +++--- pom.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/parent/pom.xml b/parent/pom.xml index 91e2ee1215..7b0dab07a4 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -47,14 +47,14 @@ <version.maven.buildhelper>1.12</version.maven.buildhelper> <version.maven.bundle>3.5.1</version.maven.bundle> <version.maven.jar>3.1.0</version.maven.jar> - <version.maven.failsafe>3.2.5</version.maven.failsafe> - <version.maven.surefire>3.2.5</version.maven.surefire> + <version.maven.failsafe>3.5.4</version.maven.failsafe> + <version.maven.surefire>3.5.4</version.maven.surefire> <version.scala.library>2.12.12</version.scala.library> <version.maven.maven-remote-resources-plugin>1.6.0</version.maven.maven-remote-resources-plugin> <version.maven.checkstyle>8.29</version.maven.checkstyle> <version.maven.checkstyle.plugin>3.1.0</version.maven.checkstyle.plugin> - <version.maven.surefire.plugin>3.2.5</version.maven.surefire.plugin> + <version.maven.surefire.plugin>3.5.4</version.maven.surefire.plugin> <version.plexus.build.api>0.0.7</version.plexus.build.api> <mycila-license-version>3.0</mycila-license-version> diff --git a/pom.xml b/pom.xml index 03529c33b8..8b511bf056 100644 --- a/pom.xml +++ b/pom.xml @@ -39,7 +39,7 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version> - <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> + <maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version>
