This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new caa849538a9 camel-jbang: sb gradle caa849538a9 is described below commit caa849538a976eef4b509654140a838c4aa7cbe0 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Jun 15 08:56:35 2024 +0200 camel-jbang: sb gradle --- .../src/main/resources/templates/spring-boot-build-gradle.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/resources/templates/spring-boot-build-gradle.tmpl b/dsl/camel-jbang/camel-jbang-core/src/main/resources/templates/spring-boot-build-gradle.tmpl index f5f530d059a..0c28385abb3 100644 --- a/dsl/camel-jbang/camel-jbang-core/src/main/resources/templates/spring-boot-build-gradle.tmpl +++ b/dsl/camel-jbang/camel-jbang-core/src/main/resources/templates/spring-boot-build-gradle.tmpl @@ -1,7 +1,7 @@ plugins { id 'java' id 'org.springframework.boot' version '{{ .SpringBootVersion }}' - id 'io.spring.dependency-management' version '1.1.2' + id 'io.spring.dependency-management' version '1.1.5' } group = '{{ .GroupId }}' @@ -20,7 +20,7 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-actuator' - implementation 'org.apache.camel.springboot:camel-spring-boot-engine-starter:{{ .CamelVersion }}' + implementation 'org.apache.camel.springboot:camel-spring-boot-starter:{{ .CamelVersion }}' {{ .CamelDependencies }} testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.apache.camel:camel-test-spring-junit5:{{ .CamelVersion }}'