13

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

由于这个 Maven 配置为针对源和目标级别 1.4 进行编译。

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

4

1 回答 1

22

可以为maven 编译器插件的compiletestCompile目标分别设置源版本和目标版本。您可以通过在 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>
于 2012-05-15T16:40:56.367 回答