Skip to content

Commit b700c3f

Browse files
authored
Fix JBang runtime version logging plus SB version upgrade (#20954)
1 parent 0a5e8bf commit b700c3f

File tree

3 files changed

+4
-4
lines changed
  • dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core
  • tooling/maven/camel-repackager-maven-plugin

3 files changed

+4
-4
lines changed

dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ protected int runQuarkus() throws Exception {
11091109
eq.lazyBean = this.lazyBean;
11101110
eq.applicationProperties = this.property;
11111111

1112-
printer().println("Running using Quarkus v" + eq.quarkusVersion + " (preparing and downloading files)");
1112+
printer().println("Running using Quarkus (preparing and downloading files)");
11131113

11141114
// run export
11151115
int exit = eq.export();
@@ -1221,7 +1221,7 @@ protected int runSpringBoot() throws Exception {
12211221
eq.lazyBean = this.lazyBean;
12221222
eq.applicationProperties = this.property;
12231223

1224-
printer().println("Running using Spring Boot v" + eq.springBootVersion + " (preparing and downloading files)");
1224+
printer().println("Running using Spring Boot (preparing and downloading files)");
12251225

12261226
// run export
12271227
int exit = eq.export();

dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/common/RuntimeType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public enum RuntimeType {
2727
main;
2828

2929
public static final String QUARKUS_VERSION = "3.27.0";
30-
public static final String SPRING_BOOT_VERSION = "3.5.8";
30+
public static final String SPRING_BOOT_VERSION = "3.5.9";
3131

3232
public static RuntimeType fromValue(String value) {
3333
value = value.toLowerCase(Locale.ROOT);

tooling/maven/camel-repackager-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<firstVersion>4.13.0</firstVersion>
3939
<label>tooling</label>
4040
<supportLevel>Preview</supportLevel>
41-
<spring-boot-version>3.5.8</spring-boot-version>
41+
<spring-boot-version>3.5.9</spring-boot-version>
4242
</properties>
4343

4444
<dependencies>

0 commit comments

Comments
 (0)