Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit df7360c

Browse files
[APPENG-1245] Add support for spring boot 3.5 (#9)
1 parent 82c8fe2 commit df7360c

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
max-parallel: 100
1919
matrix:
2020
spring_boot_version:
21-
- 3.4.0
22-
- 3.3.6
21+
- 3.4.6
22+
- 3.5.0
2323
container:
2424
image: azul/zulu-openjdk:17
2525
env:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.4] - 2025-06-20
9+
10+
### Changed
11+
- Added support for Spring Boot 3.5.
12+
- Dropped support for Spring Boot 3.3.
13+
- Updated the version of Spring Boot 3.4 to 3.4.6.
14+
815
## [0.1.3] - 2025-03-03
916

1017
### Changed

build.common.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ dependencies {
5353
local(libraries.lombok)
5454

5555
compileOnly libraries.spotbugsAnnotations
56+
57+
testRuntimeOnly libraries.junitPlatformLauncher
5658
}
5759

5860
java {

build.libraries.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ ext {
1111
lombok : 'org.projectlombok:lombok',
1212
springBootStarter : "org.springframework.boot:spring-boot-starter",
1313
springBootStarterTest : "org.springframework.boot:spring-boot-starter-test",
14+
junitPlatformLauncher : 'org.junit.platform:junit-platform-launcher',
1415
]
1516
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.1.3
1+
version=0.1.4

0 commit comments

Comments
 (0)