Skip to content

Commit

Permalink
scala 2.13.13
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Mar 13, 2024
1 parent fd66603 commit 08b5f30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -85,7 +85,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.12]
scala: [2.13.13]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down
7 changes: 4 additions & 3 deletions build.sbt
Expand Up @@ -6,11 +6,12 @@ name := "jackson-module-scala"

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

ThisBuild / scalaVersion := "2.13.12"
val scala213Version = "2.13.13"
ThisBuild / scalaVersion := scala213Version

ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", "2.13.13", "3.3.3")
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.19", scala213Version, "3.3.3")

resolvers ++= Resolver.sonatypeOssRepos("snapshots")
//resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val jacksonVersion = "2.17.0"

Expand Down

0 comments on commit 08b5f30

Please sign in to comment.