@@ -17,17 +17,26 @@ libraryDependencies ++= Seq(
17
17
" org.apache.commons" % " commons-compress" % " 1.14" ,
18
18
// for jdkpackager
19
19
" org.apache.ant" % " ant" % " 1.10.1" ,
20
- " org.scalatest" %% " scalatest" % " 3.0.3" % Test ,
21
- // these dependencies have to be explicitly added by the user
22
- " com.spotify" % " docker-client" % " 3.5.13" % Provided ,
23
- " org.vafer" % " jdeb" % " 1.3" % Provided artifacts Artifact (" jdeb" , " jar" , " jar" )
20
+ " org.scalatest" %% " scalatest" % " 3.0.3" % Test
24
21
)
25
22
26
23
// sbt dependend libraries
27
24
libraryDependencies ++= {
28
25
(sbtVersion in pluginCrossBuild).value match {
29
- case v if v.startsWith(" 1." ) => Seq (" org.scala-sbt" %% " io" % " 1.0.0" )
30
- case _ => Seq .empty
26
+ case v if v.startsWith(" 1." ) =>
27
+ Seq (
28
+ " org.scala-sbt" %% " io" % " 1.0.0" ,
29
+ // these dependencies have to be explicitly added by the user
30
+ // FIXME temporary remove the 'provided' scope. SBT 1.0.0-M6 changed the resolving somehow
31
+ " com.spotify" % " docker-client" % " 3.5.13" /* % "provided" */ ,
32
+ " org.vafer" % " jdeb" % " 1.3" /* % "provided"*/ artifacts Artifact (" jdeb" , " jar" , " jar" )
33
+ )
34
+ case _ =>
35
+ Seq (
36
+ // these dependencies have to be explicitly added by the user
37
+ " com.spotify" % " docker-client" % " 3.5.13" % Provided ,
38
+ " org.vafer" % " jdeb" % " 1.3" % Provided artifacts Artifact (" jdeb" , " jar" , " jar" )
39
+ )
31
40
}
32
41
}
33
42
0 commit comments