如何为Java 11编译和运行我的Maven单元测试,同时为旧版本的Java 8编译我的代码

2022-09-01 08:54:47

我想在我的单元测试中使用Java 11语法,但我的“主”代码需要针对Java 8进行编译,因为我的生产环境只安装了JDK 8。

有没有办法用maven-compiler-plugin做到这一点?我的 Jenkins 服务器安装了 Java 11。

我将接受在我的生产代码中意外使用Java 11特定功能的风险。


答案 1

在Maven编译和test中,编译目标是不同的。Maven甚至有testCompile的参数:testTarget和testSource。所以:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.0</version>
    <configuration>
        <source>1.7</source>
        <target>1.7</target>
        <testSource>1.8</testSource>
        <testTarget>1.8</testTarget>
    </configuration>
</plugin>

答案 2

mkrakhin的答案的更简洁的版本 您可以设置目标testSourcetestTarget

  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>

    <maven.compiler.testSource>11</maven.compiler.testSource>
    <maven.compiler.testTarget>11</maven.compiler.testTarget>
  </properties>
</project>

推荐