Skip to content

Commit 4a7417a

Browse files
:dependabot: Bump the spring-boot group from 3.2.1 to 3.3.0-M1
* :dependabot: 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.1` | `3.2.2` | | [org.springframework.boot:spring-boot-starter-web](https://github.com/spring-projects/spring-boot) | `3.2.1` | `3.2.2` | | [org.springframework.boot:spring-boot-starter-thymeleaf](https://github.com/spring-projects/spring-boot) | `3.2.1` | `3.2.2` | | [org.springframework.boot:spring-boot-starter-test](https://github.com/spring-projects/spring-boot) | `3.2.1` | `3.2.2` | | [org.springframework.boot](https://github.com/spring-projects/spring-boot) | `3.2.1` | `3.2.2` | Updates `org.springframework.boot:spring-boot-starter-jetty` from 3.2.1 to 3.2.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v3.2.1...v3.2.2) Updates `org.springframework.boot:spring-boot-starter-web` from 3.2.1 to 3.2.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v3.2.1...v3.2.2) Updates `org.springframework.boot:spring-boot-starter-thymeleaf` from 3.2.1 to 3.2.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v3.2.1...v3.2.2) Updates `org.springframework.boot:spring-boot-starter-test` from 3.2.1 to 3.2.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v3.2.1...v3.2.2) Updates `org.springframework.boot` from 3.2.1 to 3.2.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v3.2.1...v3.2.2) --- 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-patch dependency-group: spring-boot ... Signed-off-by: dependabot[bot] <support@github.com> * ci: drop java 20 from build matrix versions list * upgrade spring boot artifacts to 3.3.0-M1 * fix typo in version identifier * upgrade spring boot gradle plugin to version 3.3.0-M1 * add missing newline at end of file --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JKatzwinkel <JKatzwinkel@users.noreply.github.com>
1 parent ce6ee3b commit 4a7417a

File tree

6 files changed

+13
-20
lines changed

6 files changed

+13
-20
lines changed

.dockerignore

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ gradlew.bat
1313
.project
1414
README.md
1515
.settings
16-
settings.gradle

.gitattributes

-2
This file was deleted.

.github/workflows/gradle.yml

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
matrix:
3636
java-version:
3737
- 17
38-
- 20
3938
- 21
4039

4140
steps:

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ build
66
bin
77
.env
88
.settings
9-
settings.gradle
109

1110
# ignore third party assets which are installed via gradle task
1211
src/main/resources/static/vendor/

build.gradle

+5-15
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
buildscript {
2-
repositories {
3-
maven {
4-
// in case there are issues with missing module metadata,
5-
// cf. https://github.com/JKatzwinkel/tla-es/pull/82
6-
url 'https://plugins.gradle.org/m2/'
7-
}
8-
}
9-
}
10-
111
plugins {
122
id 'war'
133
id 'java'
@@ -16,7 +6,7 @@ plugins {
166
id 'maven-publish'
177
id 'de.undercouch.download' version '5.5.0'
188
id 'com.adarshr.test-logger' version '4.0.0'
19-
id 'org.springframework.boot' version '3.2.1'
9+
id 'org.springframework.boot' version '3.3.0-M1'
2010
id 'com.github.ben-manes.versions' version '0.50.0'
2111
id 'com.github.dawnwords.jacoco.badge' version '0.2.4'
2212
}
@@ -80,13 +70,13 @@ dependencies {
8070
implementation 'org.modelmapper:modelmapper:3.2.0'
8171
implementation 'org.jooq:jool:0.9.15'
8272

83-
implementation('org.springframework.boot:spring-boot-starter-jetty:3.2.1') {
73+
implementation('org.springframework.boot:spring-boot-starter-jetty:3.3.0-M1') {
8474
exclude module: 'jetty-xml'
8575
}
86-
implementation('org.springframework.boot:spring-boot-starter-web:3.2.1') {
76+
implementation('org.springframework.boot:spring-boot-starter-web:3.3.0-M1') {
8777
exclude module: 'spring-boot-starter-tomcat'
8878
}
89-
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.1'
79+
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.3.0-M1'
9080
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0'
9181
implementation 'org.apache.commons:commons-lang3:3.14.0'
9282
implementation 'ch.qos.logback:logback-classic:1.4.14' // CVE-2023-6378
@@ -97,7 +87,7 @@ dependencies {
9787
exclude group: 'bouncycastle'
9888
}
9989

100-
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.1'
90+
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.3.0-M1'
10191
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.1'
10292
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
10393
}

settings.gradle

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pluginManagement {
2+
repositories {
3+
maven {
4+
url 'https://repo.spring.io/milestone'
5+
}
6+
gradlePluginPortal()
7+
}
8+
}

0 commit comments

Comments
 (0)