Maven:在不同的源代码级别上进行编译和测试



我目前正在处理一个将在嵌入式设备上运行的项目。该设备运行Java ME JRE(与Java 1.4相当)。

因此,maven被配置为针对源代码和目标级别1.4进行编译。

是否可以在不同的源/目标级别上运行 maven 测试阶段?因为这样我就可以使用 Mockito 进行单元测试。

可以为 maven 编译器插件的编译和 testCompile 目标分别设置源版本和目标版本。您可以通过在pom中定义属性来更改设置:

<properties>
    <maven.compiler.source>1.4</maven.compiler.source>
    <maven.compiler.target>1.4</maven.compiler.target>
    <maven.compiler.testSource>1.5</maven.compiler.testSource>
    <maven.compiler.testTarget>1.5</maven.compiler.testTarget>
</properties>

或者通过显式配置编译器插件:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.4</version>
    <configuration>
        <source>1.4</source>
        <target>1.4</target>
        <testSource>1.5</testSource>
        <testTarget>1.5</testTarget>
    </configuration>
</plugin>

相关内容

  • 没有找到相关文章

最新更新