From 3f6e31d66e1d735bcb4dd8fe720ca5f6f0829707 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:05:10 +0000 Subject: [PATCH] build(deps): bump the spring-boot group with 5 updates Bumps the spring-boot group with 5 updates: | Package | From | To | | --- | --- | --- | | [org.springframework.boot:spring-boot-starter-jetty](https://github.com/spring-projects/spring-boot) | `3.2.0-RC2` | `3.2.0` | | [org.springframework.boot:spring-boot-starter-web](https://github.com/spring-projects/spring-boot) | `3.2.0-RC2` | `3.2.0` | | [org.springframework.boot:spring-boot-starter-thymeleaf](https://github.com/spring-projects/spring-boot) | `3.2.0-RC2` | `3.2.0` | | [org.springframework.boot:spring-boot-starter-test](https://github.com/spring-projects/spring-boot) | `3.2.0-RC2` | `3.2.0` | | [org.springframework.boot](https://github.com/spring-projects/spring-boot) | `3.1.5` | `3.2.0` | Updates `org.springframework.boot:spring-boot-starter-jetty` from 3.2.0-RC2 to 3.2.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.0-RC2...v3.2.0) Updates `org.springframework.boot:spring-boot-starter-web` from 3.2.0-RC2 to 3.2.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.0-RC2...v3.2.0) Updates `org.springframework.boot:spring-boot-starter-thymeleaf` from 3.2.0-RC2 to 3.2.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.0-RC2...v3.2.0) Updates `org.springframework.boot:spring-boot-starter-test` from 3.2.0-RC2 to 3.2.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.0-RC2...v3.2.0) Updates `org.springframework.boot` from 3.1.5 to 3.2.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.1.5...v3.2.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-jetty dependency-type: direct:production update-type: version-update:semver-patch dependency-group: spring-boot - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch dependency-group: spring-boot - dependency-name: org.springframework.boot:spring-boot-starter-thymeleaf dependency-type: direct:production update-type: version-update:semver-patch dependency-group: spring-boot - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: spring-boot - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-minor dependency-group: spring-boot ... Signed-off-by: dependabot[bot] --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 881dde6b..b869d192 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ plugins { id 'maven-publish' id 'de.undercouch.download' version '5.5.0' id 'com.adarshr.test-logger' version '4.0.0' - id 'org.springframework.boot' version '3.1.5' + id 'org.springframework.boot' version '3.2.0' id 'com.github.ben-manes.versions' version '0.49.0' id 'com.github.dawnwords.jacoco.badge' version '0.2.4' } @@ -80,13 +80,13 @@ dependencies { implementation 'org.modelmapper:modelmapper:3.2.0' implementation 'org.jooq:jool:0.9.15' - implementation('org.springframework.boot:spring-boot-starter-jetty:3.2.0-RC2') { + implementation('org.springframework.boot:spring-boot-starter-jetty:3.2.0') { exclude module: 'jetty-xml' } - implementation('org.springframework.boot:spring-boot-starter-web:3.2.0-RC2') { + implementation('org.springframework.boot:spring-boot-starter-web:3.2.0') { exclude module: 'spring-boot-starter-tomcat' } - implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.0-RC2' + implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.0' implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0' implementation 'org.apache.commons:commons-lang3:3.13.0' @@ -96,7 +96,7 @@ dependencies { exclude group: 'bouncycastle' } - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.0-RC2' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.0' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.1' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1' }