我目前正在开发一个在嵌入式设备上运行的项目.该设备运行
Java ME JRE(与
Java 1.4相当).
因为这个maven被配置为编译源代码目标等级1.4.
可以在不同的源/目标级别运行maven测试阶段吗?因为这样我可以使用Mockito进行单元测试.
谢谢,
迈克尔
解决方法
可以为
maven compiler plugin的
compile和
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>