如何使用SBT在build.scala中使用-D变量?

时间:2014-10-16 00:13:18

标签: scala sbt

我有一个build.scala文件,其依赖关系如下:

"com.example" % "core" % "2.0" classifier "full-unstable"

这会使用完全不稳定的分类器

来引入JAR

我需要做的是指定"不稳定"或者"稳定"从Jenkins(构建服务器)到SBT(使用-D I presume)来更改分类器。如果变量替换像在Maven中那样工作,则依赖关系看起来像:

"com.example" % "core" % "2.0" classifier "full-${branch}"

我会这样做" -Dbranch =不稳定"或" -Dbranch =稳定"

我很不清楚如何使用SBT和build.scala文件执行此操作。

1 个答案:

答案 0 :(得分:10)

您只需访问sys.props:“表示当前系统属性的双向可变Map。” 所以,你可以这样做:

val branch = "full-" + sys.props.getOrElse("branch", "unstable")
"com.example" % "core" % "2.0" classifier branch

如果您希望Build.scala中的文件中包含更高级的自定义属性:

import java.io.{BufferedReader, InputStreamReader, FileInputStream, File}
import java.nio.charset.Charset
import java.util.Properties

object MyBuild extends Build {

  // updates system props (mutable map of props)
  loadSystemProperties("project/myproj.build.properties")

  def loadSystemProperties(fileName: String): Unit = {
    import scala.collection.JavaConverters._
    val file = new File(fileName)
    if (file.exists()) {
      println("Loading system properties from file `" + fileName + "`")
      val in = new InputStreamReader(new FileInputStream(file), "UTF-8")
      val props = new Properties
      props.load(in)
      in.close()
      sys.props ++ props.asScala
    }
  }

  // to test try:
  println(sys.props.getOrElse("branch", "unstable"))
}

SBT比Maven更强大,因为如果你需要非常自定义的东西,你可以简单地编写Scala代码。在这种情况下,您可能希望使用Build.scala代替build.sbt

p.s myproj.build.properties文件如下所示:

sbt.version=0.13.1

scalaVersion=2.10.4

parallelExecution=true

branch=stable