Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dsl/camel-jbang/camel-jbang-container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM docker.io/eclipse-temurin:21-jdk

ENV JBANG_VERSION=0.121.0
# /!\ Camel version must be changed in the entrypoint line too
ENV CAMEL_VERSION=4.8.2
ENV CAMEL_VERSION=4.8.3

RUN wget -c https://github.com/jbangdev/jbang/releases/download/v$JBANG_VERSION/jbang.tar -O - | tar xv && \
chmod +x jbang/bin/jbang
Expand All @@ -31,5 +31,5 @@ RUN jbang trust add https://github.com/apache/camel
# used to initiliaze dependencies in the docker image
RUN jbang -Dcamel.jbang.version=$CAMEL_VERSION camel@apache/camel version

ENTRYPOINT [ "jbang", "-Dcamel.jbang.version=4.8.2", "camel@apache/camel"]
ENTRYPOINT [ "jbang", "-Dcamel.jbang.version=4.8.3", "camel@apache/camel"]

Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class CatalogDoc extends CamelCommand {
boolean headers;

@CommandLine.Option(names = {
"--kamelets-version" }, description = "Apache Camel Kamelets version", defaultValue = "4.8.2")
"--kamelets-version" }, description = "Apache Camel Kamelets version", defaultValue = "4.8.3")
String kameletsVersion;

CamelCatalog catalog;
Expand Down
6 changes: 3 additions & 3 deletions dsl/camel-jbang/camel-jbang-main/dist/CamelJBang.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

//JAVA 17+
//REPOS central=https://repo1.maven.org/maven2,apache-snapshot=https://repository.apache.org/content/groups/snapshots/
//DEPS org.apache.camel:camel-bom:${camel.jbang.version:4.8.2}@pom
//DEPS org.apache.camel:camel-jbang-core:${camel.jbang.version:4.8.2}
//DEPS org.apache.camel.kamelets:camel-kamelets:${camel-kamelets.version:4.8.2}
//DEPS org.apache.camel:camel-bom:${camel.jbang.version:4.8.3}@pom
//DEPS org.apache.camel:camel-jbang-core:${camel.jbang.version:4.8.3}
//DEPS org.apache.camel.kamelets:camel-kamelets:${camel-kamelets.version:4.8.3}

package main;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

//JAVA 17+
//REPOS central=https://repo1.maven.org/maven2,apache-snapshot=https://repository.apache.org/content/groups/snapshots/
//DEPS org.apache.camel:camel-bom:${camel.jbang.version:4.8.2}@pom
//DEPS org.apache.camel:camel-jbang-core:${camel.jbang.version:4.8.2}
//DEPS org.apache.camel.kamelets:camel-kamelets:${camel-kamelets.version:4.8.2}
//DEPS org.apache.camel:camel-bom:${camel.jbang.version:4.8.3}@pom
//DEPS org.apache.camel:camel-jbang-core:${camel.jbang.version:4.8.3}
//DEPS org.apache.camel.kamelets:camel-kamelets:${camel-kamelets.version:4.8.3}

package main;

Expand Down
Loading