Как исключить «затравку maven -forcer-plugin» (цель «принудительное исполнение»), игнорируемое m2e?

Я настраиваю многомодульный родительский проект child maven, используя maven и eclipse m2e, я использую последние материалы из 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 -->
        <executio,n>
            <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?

Ответы на вопрос(6)

Ваш ответ на вопрос