Skip to content

Commit

Permalink
deps: Update SpringBoot to 3.2.0 (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahoo-Wang authored Nov 25, 2023
1 parent ea630a6 commit fc1d7be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ configure(libraryProjects) {
}
}

// SpringBoot 3.2.0: fix Failed to extract parameter names for CosIdEndpoint
tasks.withType<JavaCompile> {
options.compilerArgs.addAll(listOf("-parameters"))
}

dependencies {
api(platform(dependenciesProject))
annotationProcessor(platform(dependenciesProject))
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# limitations under the License.
#
group=me.ahoo.cosid
version=2.5.6
version=2.6.0
description=Universal, flexible, high-performance distributed ID generator.
website=https://github.com/Ahoo-Wang/CosId
issues=https://github.com/Ahoo-Wang/CosId/issues
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
# libraries
springBoot = "3.1.5"
springBoot = "3.2.0"
springCloud = "2022.0.4"
okhttp = "4.12.0"
testcontainers = "1.19.3"
Expand Down

0 comments on commit fc1d7be

Please sign in to comment.