mirror of https://github.com/sbt/sbt.git
Merge pull request #5555 from alexarchambault/bump-lm-coursier
Update coursier to 2.0.0-RC6-4
This commit is contained in:
commit
7e806effa2
|
|
@ -26,6 +26,11 @@ object MainLoop {
|
|||
|
||||
/** Entry point to run the remaining commands in State with managed global logging.*/
|
||||
def runLogged(state: State): xsbti.MainResult = {
|
||||
|
||||
// This warns if ~/.coursier/cache is found.
|
||||
// Temporary, remove when updating coursier to 2.0.0 final.
|
||||
lmcoursier.CoursierConfiguration.checkLegacyCache()
|
||||
|
||||
// We've disabled jline shutdown hooks to prevent classloader leaks, and have been careful to always restore
|
||||
// the jline terminal in finally blocks, but hitting ctrl+c prevents finally blocks from being executed, in that
|
||||
// case the only way to restore the terminal is in a shutdown hook.
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ object Dependencies {
|
|||
def addSbtZincCompile = addSbtModule(sbtZincPath, "zincCompileJVM2_12", zincCompile)
|
||||
def addSbtZincCompileCore = addSbtModule(sbtZincPath, "zincCompileCoreJVM2_12", zincCompileCore)
|
||||
|
||||
val lmCoursierShaded = "io.get-coursier" %% "lm-coursier-shaded" % "2.0.0-RC6-2"
|
||||
val lmCoursierShaded = "io.get-coursier" %% "lm-coursier-shaded" % "2.0.0-RC6-4"
|
||||
|
||||
def sjsonNew(n: String) = Def.setting("com.eed3si9n" %% n % contrabandSjsonNewVersion.value)
|
||||
val sjsonNewScalaJson = sjsonNew("sjson-new-scalajson")
|
||||
|
|
|
|||
Loading…
Reference in New Issue