我正在使用 maven 和 eclipse m2e 配置一个多模块父子 maven 项目,我正在使用来自 eclipse Juno SR1 的最新内容,即 m2e 1.2.0
父 pom 使用强制插件,因此父 pom.xml 在其插件部分中有以下内容
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.1.1</version>
<executions>
<!-- Enforce that all versions of a transative dependency must converge. -->
<execution>
<id>enforce</id>
<configuration>
<rules>
<DependencyConvergence />
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
<!-- Black list certain jars -->
<execution>
<id>enforce-banned-dependencies</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<exclude>
commons-logging:commons-logging
</exclude>
</excludes>
</bannedDependencies>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
每个子项目都有一条错误消息说maven-enforcer-plugin (goal "enforce") is ignored by m2e.
- 这条消息的含义是什么?
- 如何配置以消除此消息?
- 我需要配置 eclipse 项目设置或 pom.xml 设置吗?