Tweak shading test

This commit is contained in:
Alexandre Archambault 2017-05-31 15:25:06 +02:00
parent f609e65f8b
commit 1cd57c071b
1 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,10 @@
enablePlugins(coursier.ShadingPlugin)
shadingNamespace := "test.shaded"
libraryDependencies += "io.argonaut" %% "argonaut" % "6.2-RC2" % "shaded"
libraryDependencies ++= Seq(
"io.argonaut" %% "argonaut" % "6.2-RC2" % "shaded",
"org.scala-lang" % "scala-reflect" % scalaVersion.value // not shading that one
)
scalaVersion := "2.11.8"
organization := "io.get-coursier.test"