Skip to content

Commit d4eeaf5

Browse files
authored
Merge pull request #24 from framefork/fp-upgrade-libs
upgrade libs
2 parents 2851646 + 3b75213 commit d4eeaf5

File tree

41 files changed

+786
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+786
-15
lines changed

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88
}
99

1010
dependencies {
11-
val kotlinVersion = "2.2.20"
11+
val kotlinVersion = "2.2.21"
1212

1313
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
1414
implementation("org.jetbrains.kotlin:kotlin-serialization:${kotlinVersion}")

gradle/libs.versions.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ errorProne = "2.35.1"
44
junit-jupiter = "5.10.3"
55
jackson = "2.18.1"
66
testcontainers = "1.20.3"
7+
springBoot = "3.5.8"
78

89
[libraries]
9-
uuidGenerator = { module = "com.fasterxml.uuid:java-uuid-generator", version = "5.1.0" }
10+
uuidGenerator = { module = "com.fasterxml.uuid:java-uuid-generator", version = "5.1.1" }
1011
jetbrains-annotations = { module = "org.jetbrains:annotations", version = "26.0.2" }
1112
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jackson" }
1213
jackson-annotations = { group = "com.fasterxml.jackson.core", name = "jackson-annotations", version.ref = "jackson" }
@@ -32,17 +33,17 @@ hibernate-orm-v62 = { group = "org.hibernate.orm", name = "hibernate-core", vers
3233
hibernate-orm-v63 = { group = "org.hibernate.orm", name = "hibernate-core", version = "6.3.2.Final" }
3334
hibernate-orm-v64 = { group = "org.hibernate.orm", name = "hibernate-core", version = "6.4.10.Final" }
3435
hibernate-orm-v65 = { group = "org.hibernate.orm", name = "hibernate-core", version = "6.5.3.Final" }
35-
hibernate-orm-v66 = { group = "org.hibernate.orm", name = "hibernate-core", version = "6.6.31.Final" }
36+
hibernate-orm-v66 = { group = "org.hibernate.orm", name = "hibernate-core", version = "6.6.36.Final" }
3637
hibernate-orm-v70 = { group = "org.hibernate.orm", name = "hibernate-core", version = "7.0.10.Final" }
37-
hibernate-orm-v71 = { group = "org.hibernate.orm", name = "hibernate-core", version = "7.1.2.Final" }
38+
hibernate-orm-v71 = { group = "org.hibernate.orm", name = "hibernate-core", version = "7.1.9.Final" }
3839
hibernate-models-v70 = { group = "org.hibernate.models", name = "hibernate-models", version = "1.0.0" }
3940
hypersistence-utils-hibernate61 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-60", version = "3.9.4" }
4041
hypersistence-utils-hibernate62 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-62", version = "3.9.4" }
41-
hypersistence-utils-hibernate63 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-63", version = "3.11.0" }
42-
hypersistence-utils-hibernate70 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-70", version = "3.11.0" }
43-
hypersistence-utils-hibernate71 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-71", version = "3.11.0" }
42+
hypersistence-utils-hibernate63 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-63", version = "3.12.0" }
43+
hypersistence-utils-hibernate70 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-70", version = "3.12.0" }
44+
hypersistence-utils-hibernate71 = { group = "io.hypersistence", name = "hypersistence-utils-hibernate-71", version = "3.12.0" }
4445
hypersistence-tsid = { module = "io.hypersistence:hypersistence-tsid", version = "2.1.4" }
4546
kotlinx-serialization = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.7.0" }
4647
swagger-v3-core-jakarta = { module = "io.swagger.core.v3:swagger-core-jakarta", version = "2.2.35" }
4748
springdoc-openapi-starter-common = { module = "org.springdoc:springdoc-openapi-starter-common", version = "2.1.0" }
48-
springdoc-openapi-spring-configuration-processor = { module = "org.springframework.boot:spring-boot-configuration-processor", version = "3.0.5" }
49+
springdoc-openapi-spring-configuration-processor = { module = "org.springframework.boot:spring-boot-configuration-processor", version.ref = "springBoot" }

testing/testing-typed-ids-spring-data-indexed/build.gradle.kts renamed to testing/testing-typed-ids-spring-boot-3x-data-indexed/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
dependencies {
66
implementation(project(":typed-ids-hibernate-63"))
77

8-
api(platform("org.springframework.boot:spring-boot-dependencies:3.4.10"))
8+
api(platform("org.springframework.boot:spring-boot-dependencies:3.5.8"))
99
api("org.springframework.boot:spring-boot-starter-data-jpa")
1010

1111
annotationProcessor(project(":typed-ids-index-java-classes-processor"))

0 commit comments

Comments
 (0)