Merge pull request #183 from alexarchambault/coursier-2.0.0-RC6

Switch to coursier 2.0.0-RC6
This commit is contained in:
Alexandre Archambault 2020-02-03 20:51:04 +01:00 committed by GitHub
commit f8bd86b4b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ inThisBuild(List(
)
))
val coursierVersion0 = "2.0.0-RC5-6"
val coursierVersion0 = "2.0.0-RC6"
lazy val `lm-coursier` = project
.in(file("modules/lm-coursier"))
@ -52,7 +52,8 @@ lazy val `lm-coursier-shaded` = project
"shapeless",
"argonaut",
"org.fusesource",
"org.jline"
"macrocompat",
"io.github.alexarchambault.windowsansi"
),
libraryDependencies ++= Seq(
"io.get-coursier" %% "coursier" % coursierVersion0 % "shaded",
@ -63,8 +64,7 @@ lazy val `lm-coursier-shaded` = project
),
packageBin.in(Shading) := {
val jar = packageBin.in(Shading).value
// ignoreFiles is there temporarily, until https://github.com/coursier/coursier/pull/1317 is merged
Check.onlyNamespace("lmcoursier", jar, ignoreFiles = Set("coursier.properties"))
Check.onlyNamespace("lmcoursier", jar)
jar
}
)