maven-enforcer-plugin (goal "enforce") is ignored by m2e.

在eclipse中发现jfinal的pom.xml出一个警告,位置在项目引用的父pom上:

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

提示:maven-enforcer-plugin (goal "enforce") is ignored by m2e.

查找相关资料发现应该是eclipse的m2e插件的问题,解决办法是在plugin中加入lifecycle-mapping插件即可

<pluginManagement>
        <plugins>
            <!-- This plugin's configuration is used to store Eclipse m2e settings
                only. It has no influence on the Maven build itself. -->
            <plugin>
                <groupId>org.eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>org.apache.maven.plugins</groupId>
                                    <artifactId>maven-enforcer-plugin</artifactId>
                                    <versionRange>[1.0.0,)</versionRange>
                                    <goals>
                                        <goal>enforce</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <ignore />
                                </action>
                            </pluginExecution>
                        </pluginExecutions>
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>

参考网页地址:https://blog.csdn.net/jdwl20090304/article/details/40107269

波总考虑是否要添加这个插件,有强迫症的人会总会想办法消除警告。

评论区

JFinal

2019-03-21 16:51

jfinal 的 pom.xml 文件在你的项目中应该用不到,而且在我这里也没有问题

不过还是得谢谢你的反馈

shanmine

2019-03-21 17:16

@JFinal 是的,我fork了您的仓库,学习JFinal的源码,收获颇多,谢谢。

JFinal

2019-03-21 17:19

@shanmine jfinal 虽然才两万多行代码,但功能齐全:mvc + orm +aop + template engine 等等

只需要看两万多行代码,就可以了解上述设计的全貌,没有比这更高效的源码学习方式了

热门反馈

扫码入社