在SBT中设置目标JVM

发布于 2024-09-25 17:12:48 字数 337 浏览 6 评论 0原文

如何在 SBT 中设置目标 JVM 版本? 在 Maven 中(使用 maven-scala-plugin),可以按如下方式完成:

<plugin>
...
    <configuration>
      <scalaVersion>${scala.version}</scalaVersion>
      <args>
         <arg>-target:jvm-1.5</arg>
      </args>
    </configuration>
</plugin>

How can I set target JVM version in SBT?
In Maven (with maven-scala-plugin) it can be done as follows:

<plugin>
...
    <configuration>
      <scalaVersion>${scala.version}</scalaVersion>
      <args>
         <arg>-target:jvm-1.5</arg>
      </args>
    </configuration>
</plugin>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

∞琼窗梦回ˉ 2024-10-02 17:12:48

您可以在项目定义中指定编译器选项:

javacOptions ++= Seq("-source", "1.8", "-target", "1.8") 

You can specify compiler options in the project definition:

javacOptions ++= Seq("-source", "1.8", "-target", "1.8") 
中性美 2024-10-02 17:12:48

你必须添加(在你的 build.sbt 文件中):

scalacOptions += "-target:jvm-1.8"

否则它将无法工作。

you have to add(in your build.sbt file):

scalacOptions += "-target:jvm-1.8"

otherwise it won't work.

甜嗑 2024-10-02 17:12:48

从 2023 年的版本开始,该选项现在为 -release 而不是 -target

As of versions in 2023, the option is now -release instead of -target

北座城市 2024-10-02 17:12:48

正如其他人在评论中所建议的,当前的 sbt 版本(1.0、0.13.15)使用以下符号来设置源和目标 JVM。

javacOptions ++= Seq("-source", "1.8", "-target", "1.8")

As suggested by others in comments, the current sbt version (1.0, 0.13.15) uses the following notation for setting source and target JVMs.

javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文