mirror of https://github.com/sbt/sbt.git
Merge pull request #183 from alexarchambault/coursier-2.0.0-RC6
Switch to coursier 2.0.0-RC6
This commit is contained in:
commit
f8bd86b4b4
|
|
@ -15,7 +15,7 @@ inThisBuild(List(
|
||||||
)
|
)
|
||||||
))
|
))
|
||||||
|
|
||||||
val coursierVersion0 = "2.0.0-RC5-6"
|
val coursierVersion0 = "2.0.0-RC6"
|
||||||
|
|
||||||
lazy val `lm-coursier` = project
|
lazy val `lm-coursier` = project
|
||||||
.in(file("modules/lm-coursier"))
|
.in(file("modules/lm-coursier"))
|
||||||
|
|
@ -52,7 +52,8 @@ lazy val `lm-coursier-shaded` = project
|
||||||
"shapeless",
|
"shapeless",
|
||||||
"argonaut",
|
"argonaut",
|
||||||
"org.fusesource",
|
"org.fusesource",
|
||||||
"org.jline"
|
"macrocompat",
|
||||||
|
"io.github.alexarchambault.windowsansi"
|
||||||
),
|
),
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.get-coursier" %% "coursier" % coursierVersion0 % "shaded",
|
"io.get-coursier" %% "coursier" % coursierVersion0 % "shaded",
|
||||||
|
|
@ -63,8 +64,7 @@ lazy val `lm-coursier-shaded` = project
|
||||||
),
|
),
|
||||||
packageBin.in(Shading) := {
|
packageBin.in(Shading) := {
|
||||||
val jar = packageBin.in(Shading).value
|
val jar = packageBin.in(Shading).value
|
||||||
// ignoreFiles is there temporarily, until https://github.com/coursier/coursier/pull/1317 is merged
|
Check.onlyNamespace("lmcoursier", jar)
|
||||||
Check.onlyNamespace("lmcoursier", jar, ignoreFiles = Set("coursier.properties"))
|
|
||||||
jar
|
jar
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue