6

我正在使用 SBT 为 Scala 2.8、2.9 和(希望)2.10 交叉构建的项目。我想在-feature仅使用 2.10 编译时添加该选项。

换句话说,当我使用小于 2.10.0 的版本进行编译时,我想将编译器选项设置为:

scalacOptions ++= Seq( "-deprecation", "-unchecked" )

并且在使用大于或等于 2.10.0 的版本进行编译时:

scalacOptions ++= Seq( "-deprecation", "-unchecked", "-feature" )

有没有办法做到这一点?

4

2 回答 2

7

我发现这是一种快速而简洁的方法:

scalaVersion := "2.10.0"

crossScalaVersions := "2.9.2" :: "2.10.0" :: Nil

scalacOptions <<= scalaVersion map { v: String =>
  val default = "-deprecation" :: "-unchecked" :: Nil
  if (v.startsWith("2.9.")) default else default :+ "-feature"            
}
于 2013-01-05T00:00:43.427 回答
6

交叉构建时,scalaVersion 反映了您的项目当前构建的版本。因此,根据 scalaVersion 应该可以解决问题:

val scalaVersionRegex = "(\\d+)\\.(\\d+).*".r
...
scalacOptions <++= scalaVersion { sv =>
  sv match {
    case scalaVersionRegex(major, minor) if major.toInt > 2 || (major == "2" && minor.toInt >= 10) =>
      Seq( "-deprecation", "-unchecked", "-feature" )
    case _ => Seq( "-deprecation", "-unchecked" )
}
于 2012-09-27T19:16:46.303 回答