Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
distribution: 'temurin'

- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6
uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0

- name: Show Version Number
id: version
Expand Down
9 changes: 4 additions & 5 deletions gradle/libraries.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
retrofit2 = "3.0.0"
jjwt = "0.13.0"
jackson = "2.20.0"
jackson-annotations = "2.20"
assertj = "3.27.6"
junit = "6.0.0"
junitPlatformLauncher = "6.0.0"
Expand All @@ -21,11 +22,9 @@ logback = { module = "ch.qos.logback:logback-classic", version = "1.5.19" }
okhttp3 = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp3" }
okhttp3-logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp3" }

jackson-bom = { module = "com.fasterxml.jackson:jackson-bom", version.ref = "jackson" }

jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind" }
jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations" }
jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310" }
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson-annotations" }
jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version.ref = "jackson" }

findbugs-jsr305 = { module = "com.google.code.findbugs:jsr305", version = "3.0.2" }

Expand Down
1 change: 0 additions & 1 deletion line-bot-jackson/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ plugins {
}

dependencies {
api(platform(libs.jackson.bom))
api(libs.jackson.databind) // Provide configured ObjectMapper.
implementation(libs.jackson.datatype.jsr310)
}
2 changes: 0 additions & 2 deletions line-bot-webhook/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ plugins {


dependencies {
implementation(platform(libs.jackson.bom))

compileOnly(libs.jackson.annotations)
compileOnly(libs.javax.annotation)
compileOnly(libs.jakarta.annotation.api)
Expand Down