Skip to content

Commit 08b5f30

Browse files
committed
scala 2.13.13
1 parent fd66603 commit 08b5f30

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
strategy:
8686
matrix:
8787
os: [ubuntu-latest]
88-
scala: [2.13.12]
88+
scala: [2.13.13]
8989
java: [zulu@8]
9090
runs-on: ${{ matrix.os }}
9191
steps:

build.sbt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ name := "jackson-module-scala"
66

77
organization := "com.fasterxml.jackson.module"
88

9-
ThisBuild / scalaVersion := "2.13.12"
9+
val scala213Version = "2.13.13"
10+
ThisBuild / scalaVersion := scala213Version
1011

11-
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", "2.13.13", "3.3.3")
12+
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", scala213Version, "3.3.3")
1213

13-
resolvers ++= Resolver.sonatypeOssRepos("snapshots")
14+
//resolvers ++= Resolver.sonatypeOssRepos("snapshots")
1415

1516
val jacksonVersion = "2.17.0"
1617

0 commit comments

Comments
 (0)