gpt4 book ai didi

scala - 需要 Java 8 才能使用 Maven 构建 Scala 项目

转载 作者:行者123 更新时间:2023-12-04 05:18:19 25 4
gpt4 key购买 nike

我正在使用 scala-maven-plugin 构建一个使用 Maven 的 Scala 项目。我的项目依赖于 Java 8 中的一些库。我想在我的 pom 中指定该项目需要 Java 8(使用类似于 -target=jdk-1.8 的东西,这似乎不存在)所以当有人尝试使用 Java 版本 < 8 进行编译时,它会更优雅地/提供更多信息地失败。目前它只是找不到我正在尝试导入的包。

我尝试添加 maven-compiler-plugin 并将 sourcetarget 设置为 1.8,但这没有用,大概是因为 scala-maven-plugin 正在处理编译而不是 maven-compiler-plugin

这可能吗?

最佳答案

您可以使用 Maven Enforcer Plugin在运行 Maven 构建时强制执行一些要断言的规则。

这里要确保使用的Java版本至少是8。您可以通过将以下内容添加到您的 pom.xml 文件来实现此目的:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>enforce-java</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

关于scala - 需要 Java 8 才能使用 Maven 构建 Scala 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30548414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com