您好我有一个多模块Maven项目,我在 Windows 计算机中安装了 Java1.5 和 Java1.6 ,并为<环境变量中的strong> Java1.6 (对于Eclipse Juno)。但是我只想用 Java5 运行maven命令。如何在Parent project pom中设置如何使用 Java5 仅用于编译Java文件。我在父pom.xm文件中添加了这些行。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<compilerId>eclipse</compilerId>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
但我在智利项目pom.xml文件中收到错误
生命周期配置未涵盖插件执行: org.apache.maven.plugins:Maven的编译器插件:2.5.1:testCompile (执行:default-testCompile,阶段:test-compile)
答案 0 :(得分:1)
请使用Plugin_Management而不是Plugins声明此声明需要将插件配置继承到子项目(http://maven.apache.org/pom.html#Plugin_Management)
在你的情况下,它将以下列方式查看:
父 pom.xml
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
孩子 pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
还可以在父 pom.xml
中设置以下属性<properties>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>