java – Maven:在不同的源级别进行编译和测试

前端之家收集整理的这篇文章主要介绍了java – Maven:在不同的源级别进行编译和测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在开发一个在嵌入式设备上运行的项目.该设备运行 Java ME JRE(与 Java 1.4相当).

因为这个maven被配置为编译源代码目标等级1.4.

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

谢谢,
迈克尔

解决方法

可以为 maven compiler plugincompiletestCompile目标单独设置源和目标版本.您可以通过定义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>
原文链接:https://www.f2er.com/java/125633.html

猜你在找的Java相关文章