sbt依赖管理备忘

一、禁止依赖传递(intransitive) json

val json4s = "org.json4s" %% "json4s-core" % "3.2.4" intransitive()
二、排除某个传递的依赖(exclude)

val json4s = "org.json4s" %% "json4s-native" % "3.2.4" exclude("org.scala-lang", "scala-compiler")
相关文章
相关标签/搜索