From 91b064e7d07898480d1dfdf303d66d8955acdd1f Mon Sep 17 00:00:00 2001 From: Croway Date: Wed, 1 Apr 2026 14:38:57 +0200 Subject: [PATCH] Fix JBang IT Tests by adding install goal to Maven build The pipeline only ran `clean` without `install`, so SNAPSHOT artifacts were never built. The subsequent IT tests failed with unresolved dependencies (camel-test-infra-common, camel-util, etc). --- Jenkinsfile.jbangtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile.jbangtest b/Jenkinsfile.jbangtest index c8d0bbc6a36b2..928c6a9211fc2 100644 --- a/Jenkinsfile.jbangtest +++ b/Jenkinsfile.jbangtest @@ -62,7 +62,7 @@ pipeline { } } steps { - sh "./mvnw $MAVEN_PARAMS -Pdeploy,apache-snapshots -Dquickly clean" + sh "./mvnw $MAVEN_PARAMS -Pdeploy,apache-snapshots -Dquickly clean install" sh "./mvnw $MAVEN_PARAMS -f test-infra/camel-test-infra-cli/pom.xml -Pjbang-it-test" sh "./mvnw $MAVEN_PARAMS -f dsl/camel-jbang/camel-jbang-it/pom.xml -Pjbang-it-test" }