mirror of https://github.com/sbt/sbt.git
Merge pull request #7920 from eed3si9n/wip/bump-coursier
lm-coursier 2.1.6
This commit is contained in:
commit
b7e03605cd
|
|
@ -77,7 +77,7 @@ object Dependencies {
|
|||
def addSbtZincCompile = addSbtModule(sbtZincPath, "zincCompile", zincCompile)
|
||||
def addSbtZincCompileCore = addSbtModule(sbtZincPath, "zincCompileCore", zincCompileCore)
|
||||
|
||||
val lmCoursierShaded = "io.get-coursier" %% "lm-coursier-shaded" % "2.1.5"
|
||||
val lmCoursierShaded = "io.get-coursier" %% "lm-coursier-shaded" % "2.1.6"
|
||||
|
||||
def sjsonNew(n: String) =
|
||||
Def.setting("com.eed3si9n" %% n % "0.10.1") // contrabandSjsonNewVersion.value
|
||||
|
|
|
|||
|
|
@ -9,6 +9,18 @@ TaskKey[Unit]("check") := {
|
|||
val report = updateFull.value
|
||||
val graph = (Test / dependencyTree / asString).value
|
||||
def sanitize(str: String): String = str.split('\n').drop(1).map(_.trim).mkString("\n")
|
||||
|
||||
/*
|
||||
Started to return:
|
||||
|
||||
ch.qos.logback:logback-core:1.0.7
|
||||
default:sbt_8ae1da13_2.12:0.1.0-SNAPSHOT [S]
|
||||
+-ch.qos.logback:logback-classic:1.0.7
|
||||
| +-org.slf4j:slf4j-api:1.6.6 (evicted by: 1.7.2)
|
||||
|
|
||||
+-org.slf4j:slf4j-api:1.7.2
|
||||
*/
|
||||
|
||||
val expectedGraph =
|
||||
"""default:default-e95e05_2.12:0.1-SNAPSHOT [S]
|
||||
| +-ch.qos.logback:logback-classic:1.0.7
|
||||
|
|
|
|||
Loading…
Reference in New Issue