This is an automated email from the ASF dual-hosted git repository. christophd pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 35873ddbda2aead5cad7b59a2251e3d6da2f1513 Author: Christoph Deppisch <[email protected]> AuthorDate: Tue Jul 7 20:14:16 2026 +0200 fix: Avro/Protobuf run dependencies in JBang properties - JBang 139+ fails to read multiple Maven GAV dependencies from jbang.properties - Move jbang.properties to individual tests and use LATEST version placeholder as a workaround --- .../src/test/{resources-filtered => resources/avro}/jbang.properties | 3 +-- .../test/{resources-filtered => resources/protobuf}/jbang.properties | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/camel-kamelets-itest/src/test/resources-filtered/jbang.properties b/tests/camel-kamelets-itest/src/test/resources/avro/jbang.properties similarity index 87% copy from tests/camel-kamelets-itest/src/test/resources-filtered/jbang.properties copy to tests/camel-kamelets-itest/src/test/resources/avro/jbang.properties index caab22cef..7fd199d5d 100644 --- a/tests/camel-kamelets-itest/src/test/resources-filtered/jbang.properties +++ b/tests/camel-kamelets-itest/src/test/resources/avro/jbang.properties @@ -16,5 +16,4 @@ # # Declare required additional dependencies -run.deps=org.apache.camel:camel-jackson-avro:${camel.version},\ -org.apache.camel:camel-jackson-protobuf:${camel.version} +run.deps=org.apache.camel:camel-jackson-avro:LATEST diff --git a/tests/camel-kamelets-itest/src/test/resources-filtered/jbang.properties b/tests/camel-kamelets-itest/src/test/resources/protobuf/jbang.properties similarity index 87% rename from tests/camel-kamelets-itest/src/test/resources-filtered/jbang.properties rename to tests/camel-kamelets-itest/src/test/resources/protobuf/jbang.properties index caab22cef..4e7d7e462 100644 --- a/tests/camel-kamelets-itest/src/test/resources-filtered/jbang.properties +++ b/tests/camel-kamelets-itest/src/test/resources/protobuf/jbang.properties @@ -16,5 +16,4 @@ # # Declare required additional dependencies -run.deps=org.apache.camel:camel-jackson-avro:${camel.version},\ -org.apache.camel:camel-jackson-protobuf:${camel.version} +run.deps=org.apache.camel:camel-jackson-protobuf:LATEST
