Skip to content

Commit 2a51040

Browse files
committed
update docker executor dependencies
1 parent 9ff7e73 commit 2a51040

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ lazy val core =
4747
.settings(commonSettings: _*)
4848
.settings(
4949
name := "docker-testkit-core",
50-
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.21")
50+
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.22")
5151

5252
lazy val testkitSpotifyImpl =
5353
project.in(file("impl/spotify"))
5454
.settings(commonSettings: _*)
5555
.settings(
5656
name := "docker-testkit-impl-spotify",
5757
libraryDependencies ++=
58-
Seq("com.spotify" % "docker-client" % "8.4.0",
58+
Seq("com.spotify" % "docker-client" % "8.8.0",
5959
"com.google.code.findbugs" % "jsr305" % "3.0.1"))
6060
.dependsOn(core)
6161

@@ -65,7 +65,7 @@ lazy val testkitDockerJavaImpl =
6565
.settings(
6666
name := "docker-testkit-impl-docker-java",
6767
libraryDependencies ++=
68-
Seq("com.github.docker-java" % "docker-java" % "3.0.9",
68+
Seq("com.github.docker-java" % "docker-java" % "3.0.12",
6969
"com.google.code.findbugs" % "jsr305" % "3.0.1"))
7070
.dependsOn(core)
7171

@@ -84,7 +84,7 @@ lazy val scalatest =
8484
libraryDependencies ++=
8585
Seq(
8686
"org.scalatest" %% "scalatest" % "3.0.3",
87-
"ch.qos.logback" % "logback-classic" % "1.1.7" % "test",
87+
"ch.qos.logback" % "logback-classic" % "1.2.1" % "test",
8888
"org.postgresql" % "postgresql" % "9.4.1210" % "test"))
8989
.dependsOn(core, testkitSpotifyImpl % "test", testkitDockerJavaImpl % "test", samples % "test")
9090

@@ -96,7 +96,7 @@ lazy val specs2 =
9696
libraryDependencies ++=
9797
Seq(
9898
"org.specs2" %% "specs2-core" % "3.8.6",
99-
"ch.qos.logback" % "logback-classic" % "1.1.7" % "test",
99+
"ch.qos.logback" % "logback-classic" % "1.2.1" % "test",
100100
"org.postgresql" % "postgresql" % "9.4.1210" % "test"))
101101
.dependsOn(core, samples % "test", testkitDockerJavaImpl % "test")
102102

@@ -107,7 +107,7 @@ lazy val config =
107107
name := "docker-testkit-config",
108108
libraryDependencies ++=
109109
Seq(
110-
"com.iheart" %% "ficus" % "1.4.0",
110+
"com.iheart" %% "ficus" % "1.4.1",
111111
"org.scalatest" %% "scalatest" % "3.0.3" % "test"),
112112
publish := scalaVersion map {
113113
case x if x.startsWith("2.10") => {}

0 commit comments

Comments
 (0)