Skip to content

Commit f520f2a

Browse files
authored
Update 2.14 CI to test against kotlin-core 1.8 too (#645)
1 parent d8246d6 commit f520f2a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
java_version: ['8', '11', '17']
28-
kotlin_version: ['1.4.32', '1.5.32', '1.6.21', '1.7.20']
28+
kotlin_version: ['1.4.32', '1.5.32', '1.6.21', '1.7.20', '1.8.10']
2929
os: ['ubuntu-20.04']
3030
env:
3131
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
@@ -52,7 +52,7 @@ jobs:
5252
run: ./mvnw -B -q -ff -ntp -Dversion.kotlin=${{ matrix.kotlin_version }} surefire:test
5353
- name: Extract project Maven version
5454
id: projectVersion
55-
run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT
55+
run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.3.0:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT
5656
- name: Deploy snapshot
5757
if: github.event_name != 'pull_request' && matrix.java_version == '8' && matrix.kotlin_version == '1.5.32' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT')
5858
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ println(arrayNode.toString()) // ["foo",true,1,1.0,"YmFy"]
130130
Different `kotlin-core` versions are supported by different Jackson Kotlin module minor versions.
131131
Here is an incomplete list of supported versions:
132132

133-
* Jackson 2.14.x: Kotlin-core 1.4 - 1.7
133+
* Jackson 2.14.x: Kotlin-core 1.4 - 1.8
134134
* Jackson 2.13.x: Kotlin-core 1.4 - 1.7
135135

136136
# Annotations

0 commit comments

Comments
 (0)