Skip to content

Commit b86454d

Browse files
authored
Merge pull request #124 from nonsleepr/shaded
Add shaded artifact for Spotify implementation
2 parents 2d67f86 + 42e8845 commit b86454d

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
target/
2+
target-shaded/
23
project/sbt-launch-*.jar
34
.idea/

build.sbt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lazy val root =
3636
.in(file("."))
3737
.settings(commonSettings: _*)
3838
.settings(publish := {}, publishLocal := {}, packagedArtifacts := Map.empty)
39-
.aggregate(core, testkitSpotifyImpl, testkitDockerJavaImpl, config, scalatest, specs2, samples)
39+
.aggregate(core, testkitSpotifyImpl, testkitSpotifyShadedImpl, testkitDockerJavaImpl, config, scalatest, specs2, samples)
4040

4141
lazy val core =
4242
project
@@ -54,6 +54,18 @@ lazy val testkitSpotifyImpl =
5454
"com.google.code.findbugs" % "jsr305" % "3.0.1"))
5555
.dependsOn(core)
5656

57+
lazy val testkitSpotifyShadedImpl =
58+
project
59+
.in(file("impl/spotify"))
60+
.settings(commonSettings: _*)
61+
.settings(name := "docker-testkit-impl-spotify-shaded",
62+
libraryDependencies ++=
63+
Seq("com.spotify" % "docker-client" % "8.11.5" classifier "shaded",
64+
"com.google.code.findbugs" % "jsr305" % "3.0.1"),
65+
target := baseDirectory.value / "target-shaded"
66+
)
67+
.dependsOn(core)
68+
5769
lazy val testkitDockerJavaImpl =
5870
project
5971
.in(file("impl/docker-java"))

0 commit comments

Comments
 (0)