Skip to content

Commit a3f87ea

Browse files
committed
remove scala 3 build and stick with jackson 2.12
1 parent 4ec010c commit a3f87ea

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [2.11.12, 2.12.14, 2.13.6, 3.0.2]
26+
scala: [2.11.12, 2.12.14, 2.13.6]
2727
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -127,16 +127,6 @@ jobs:
127127
tar xf targets.tar
128128
rm targets.tar
129129
130-
- name: Download target directories (3.0.2)
131-
uses: actions/download-artifact@v2
132-
with:
133-
name: target-${{ matrix.os }}-3.0.2-${{ matrix.java }}
134-
135-
- name: Inflate target directories (3.0.2)
136-
run: |
137-
tar xf targets.tar
138-
rm targets.tar
139-
140130
- env:
141131
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
142132
PGP_SECRET: ${{ secrets.PGP_SECRET }}

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ organization := "com.github.swagger-akka-http"
77

88
ThisBuild / scalaVersion := "2.13.6"
99

10-
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.14", "2.13.6", "3.0.2")
10+
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.14", "2.13.6")
1111

1212
ThisBuild / organizationHomepage := Some(url("https://github.com/swagger-akka-http/swagger-scala-module"))
1313

@@ -46,7 +46,7 @@ pomIncludeRepository := { x => false }
4646
libraryDependencies ++= Seq(
4747
"org.slf4j" % "slf4j-api" % "1.7.32",
4848
"io.swagger.core.v3" % "swagger-core" % "2.1.10",
49-
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.0-rc2",
49+
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.12.5",
5050
"org.scalatest" %% "scalatest" % "3.2.9" % Test,
5151
"org.slf4j" % "slf4j-simple" % "1.7.32" % Test
5252
)

0 commit comments

Comments
 (0)