sbt依赖管理备忘

前端之家收集整理的这篇文章主要介绍了sbt依赖管理备忘前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、禁止依赖传递(intransitive)

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

val json4s = "org.json4s" %% "json4s-native" % "3.2.4" exclude("org.scala-lang","scala-compiler")
原文链接:https://www.f2er.com/javaschema/286311.html

猜你在找的设计模式相关文章