diff --git a/.github/workflows/lint-and-test-dev.yml b/.github/workflows/lint-and-test-dev.yml index 042d09e..df9205d 100644 --- a/.github/workflows/lint-and-test-dev.yml +++ b/.github/workflows/lint-and-test-dev.yml @@ -48,7 +48,7 @@ jobs: java-version: '17' distribution: 'corretto' - name: Setup Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 with: dependency-graph: generate-and-submit dependency-graph-continue-on-failure: false diff --git a/.github/workflows/test-main.yml b/.github/workflows/test-main.yml index 30e0cf5..59c02d2 100644 --- a/.github/workflows/test-main.yml +++ b/.github/workflows/test-main.yml @@ -57,7 +57,7 @@ jobs: java-version: '${{ matrix.java-version }}' distribution: 'corretto' - name: Setup Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 - name: Test run: ./gradlew test - name: Publish Test Report diff --git a/README.md b/README.md index 3a983ee..26e993a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ jackson-module-kogera ==== +> [!WARNING] +> Due to a busy schedule and a lack of motivation, I will no longer be actively maintaining this repository. +> Therefore, there are no plans to add support for `Jackson 3.x`. + +--- + Since `beta-23`, newer versions of `Kotlin` and `Java` than the original have been used to validate changes for `Jackson 3.x`. See #Compatibility for details. diff --git a/build.gradle.kts b/build.gradle.kts index 9bb52b7..6a83dc2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -18,7 +18,7 @@ val jacksonVersion = libs.versions.jackson.get() val generatedSrcPath = "${layout.buildDirectory.get()}/generated/kotlin" group = groupStr -version = "${jacksonVersion}-beta35" +version = "${jacksonVersion}-beta36" repositories { mavenCentral() diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 890f311..77e4414 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,6 +1,6 @@ [versions] kotlin = "2.1.21" # Mainly for CI, it can be rewritten by environment variable. -jackson = "2.21.2" +jackson = "2.21.3" # test libs junit = "5.14.3"