在 sbt 中实施 Scala 项目的 Java 版本?

我的 scala 应用程序只能在 Java7中运行,因为它依赖于那个版本的 JDK 中出现的库。

如何在 sbt 中强制执行该操作,以便在用户启动 sbt 运行/编译应用程序时,如果用户使用了错误的 Java 版本,则立即向用户显示正确的错误消息?

注意: 这里有需要编译的 没有JavaTM 源代码。我的 只有有 Scala 源代码。Scala 代码需要一个可从 Java7获得的 import java.nio.file.Path

45703 次浏览

为了在 Java7中进行编译,您应该添加 javac 选项,以便在源代码1.7中进行编译。

您应该将 javacOptions ++= Seq("-source", "1.7")添加到 SBT 构建配置中,该配置可以在/project 文件夹中找到。

以下是 SBT 的参考文献: Http://www.scala-sbt.org/release/docs/detailed-topics/java-sources.html

作为 Scala 代码,您可以在构建定义中放置断言。Sbt 将 initialize定义为这类事情的通用位置,但是您可以使用任何设置,包括自定义设置。比如说,

initialize := {
val _ = initialize.value // run the previous initialization
val classVersion = sys.props("java.class.version")
val specVersion = sys.props("java.specification.version")
assert(..., "Java N or above required")
}

如果没有 Java 源代码,那么使用 javacOptions ++= Seq("-source", "1.7", "-target", "1.7")就不起作用。

但是您可以在 build.sbt 或 Build.Scala 中为 Scala 编译器设置目标 JVM:

scalacOptions += "-target:jvm-1.7"

因此,它打印在 JDK 6上:

$ sbt clean run
[info] Set current project to default-cd5534 (in build file:/tmp/so/)
[success] Total time: 0 s, completed 27.10.2013 14:31:43
[info] Updating {file:/tmp/so/}default-cd5534...
[info] Resolving org.fusesource.jansi#jansi;1.4 ...
[info] Done updating.
[info] Compiling 1 Scala source to /tmp/so/target/scala-2.10/classes...
[info] Running Main
[error] (run-main) java.lang.UnsupportedClassVersionError: Main : Unsupported major.minor version 51.0
java.lang.UnsupportedClassVersionError: Main : Unsupported major.minor version 51.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:634)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:277)
at java.net.URLClassLoader.access$000(URLClassLoader.java:73)
at java.net.URLClassLoader$1.run(URLClassLoader.java:212)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at java.lang.ClassLoader.loadClass(ClassLoader.java:314)
[trace] Stack trace suppressed: run last compile:run for the full output.
java.lang.RuntimeException: Nonzero exit code: 1
at scala.sys.package$.error(package.scala:27)
[trace] Stack trace suppressed: run last compile:run for the full output.
[error] (compile:run) Nonzero exit code: 1
[error] Total time: 4 s, completed 27.10.2013 14:31:47

注意: 也许它只适用于最新的 SBT/Scalac 版本。

在 SBT 0.13.6中有一个新的 VersionNumber类和 VersionNumberCompatibility特性。调整@MarkHarrah 推荐的方法,使用这个方法可以做到以下几点:

initialize := {
val _ = initialize.value // run the previous initialization
val required = VersionNumber("1.8")
val curr = VersionNumber(sys.props("java.specification.version"))
assert(CompatibleJavaVersion(curr, required), s"Java $required or above required")
}


...
/** Java specification version compatibility rule. */
object CompatibleJavaVersion extends VersionNumberCompatibility {
def name = "Java specification compatibility"
def isCompatible(current: VersionNumber, required: VersionNumber) =
current.numbers.zip(required.numbers).foldRight(required.numbers.size<=current.‌​numbers.size)((a,b) => (a._1 > a._2) || (a._1==a._2 && b))
def apply(current: VersionNumber, required: VersionNumber) = isCompatible(current, required)
}

对于未来的任何人来说,这也是一个很好的方法。如果找不到正确的 Java 版本,它会立即停止执行:

initialize := {
val _ = initialize.value // run the previous initialization
val required = "1.8"
val current  = sys.props("java.specification.version")
assert(current == required, s"Unsupported JDK: java.specification.version $current != $required")
}

你把这个放进你的 build.sbt里。

中使用基于 Eclipse 的 scala-ide 更改设置以防万一

Windows —— > pref —— scala 编译器—— > standard —— > target —— > jvm-1.7

enter image description here