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 bef75456cfbd3180cfa095a8c3528ff9aaa6ec48 Author: Croway <[email protected]> AuthorDate: Fri Apr 3 12:55:04 2026 +0200 chore: pass failsafe argLine to surefire so project.basedir is available When running integration tests via surefire (-Dtest=), the project.basedir system property was not set, causing PluginPathHelper to fail to locate connector JARs. This resulted in connector classes not being found and tests hanging indefinitely on cb.get(). --- tests/itests-parent/pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/itests-parent/pom.xml b/tests/itests-parent/pom.xml index 16ff974dbf..c90d0cdf33 100644 --- a/tests/itests-parent/pom.xml +++ b/tests/itests-parent/pom.xml @@ -231,6 +231,7 @@ <version>${version.maven.surefire.plugin}</version> <configuration> <failIfNoTests>false</failIfNoTests> + <argLine>${common.failsafe.args}</argLine> </configuration> </plugin>
