什么是我的build.sbt中的libraryDependencies< + = scalaVersion()?

时间:2015-11-29 21:06:21

标签: scala sbt

在我的build.sbt中,我有这一行。

libraryDependencies <+= scalaVersion("org.scala-lang" % "scala-compiler" % _)
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.0"

我无法记住the first line的含义。我如何组合这两行?

1 个答案:

答案 0 :(得分:3)

在后来的sbts中,我很确定从0.13.x开始,你可以使用

    libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
    "org.parboiled" %% "parboiled" % "2.1.0"
    )

http://www.scala-sbt.org/0.13/tutorial/More-About-Settings.html#Computing+a+value+based+on+other+keys%E2%80%99+values