Skip to content

Commit 7190351

Browse files
Merge pull request #221 from dispatch/pr-220-1.1-backport
[1.1.x] Update dependencies. enable lift-json module Scala 2.13 tests
2 parents 7584472 + 8c7b5fc commit 7190351

File tree

7 files changed

+8
-21
lines changed

7 files changed

+8
-21
lines changed

.travis.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,7 @@ language: scala
55
sudo: false
66
scala:
77
- 2.12.8
8+
- 2.13.1
89
jdk:
910
- openjdk8
1011
- openjdk11
11-
matrix:
12-
include:
13-
- jdk: openjdk8
14-
scala: 2.13.0
15-
script:
16-
# TODO lift-json for Scala 2.13
17-
- sbt "++ ${TRAVIS_SCALA_VERSION}!"
18-
"all json4s-jackson/test json4s-native/test jsoup/test core/test tagsoup/test"
19-
- jdk: openjdk11
20-
scala: 2.13.0
21-
script:
22-
# TODO lift-json for Scala 2.13
23-
- sbt "++ ${TRAVIS_SCALA_VERSION}!"
24-
"all json4s-jackson/test json4s-native/test jsoup/test core/test tagsoup/test"

core/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description :=
44
"Core Dispatch module wrapping async-http-client"
55

66
libraryDependencies +=
7-
"org.asynchttpclient" % "async-http-client" % "2.10.1"
7+
"org.asynchttpclient" % "async-http-client" % "2.10.4"
88

99
enablePlugins(BuildInfoPlugin)
1010

json4sjackson/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ description :=
55

66
libraryDependencies ++= Seq(
77
"org.json4s" %% "json4s-jackson" % "3.6.7",
8-
"ws.unfiltered" %% "unfiltered-netty-server" % "0.10.0-M4" % "test"
8+
"ws.unfiltered" %% "unfiltered-netty-server" % "0.10.0-M5" % "test"
99
)

json4snative/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ val json4sVersion = "3.6.7"
88
libraryDependencies ++= Seq(
99
"org.json4s" %% "json4s-core" % json4sVersion,
1010
"org.json4s" %% "json4s-native" % json4sVersion,
11-
"ws.unfiltered" %% "unfiltered-netty-server" % "0.10.0-M4" % "test"
11+
"ws.unfiltered" %% "unfiltered-netty-server" % "0.10.0-M5" % "test"
1212
)

liftjson/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ description :=
66
scalacOptions += "-Xfatal-warnings"
77

88
libraryDependencies ++= Seq(
9-
"net.liftweb" %% "lift-json" % "3.3.0",
10-
"org.mockito" % "mockito-core" % "3.0.0" % "test"
9+
"net.liftweb" %% "lift-json" % "3.4.0",
10+
"org.mockito" % "mockito-core" % "3.1.0" % "test"
1111
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.2.8
1+
sbt.version=1.3.3

ufcheck/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
libraryDependencies ++= Seq(
22
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test",
3-
"ws.unfiltered" %% "unfiltered-netty-server" % "0.10.0-M4" % "test",
3+
"ws.unfiltered" %% "unfiltered-netty-server" % "0.10.0-M5" % "test",
44
"org.slf4j" % "slf4j-simple" % "1.7.26" % "test"
55
)

0 commit comments

Comments
 (0)