欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:build-helper-maven-plugin:1.8:add-test-source (execution: add-functional-so

程序员文章站 2022-09-27 22:57:07
在maven项目中使用add-source时,pom.xml报如下错误: 出错误代码处(红色标记) 将上述代码注释后,加入的代码如下: 然后maven -> Update Project 即可 转载来源:https://www.cnblogs.com/guyezhai/p/5629822.html ......

 

在maven项目中使用add-source时,pom.xml报如下错误:

plugin execution not covered by lifecycle configuration: org.codehaus.mojo:build-helper-maven-plugin:1.8:add-test-source (execution: add-functional-source, phase: generate-sources)

 


出错误代码处(红色标记)

<!-- 增加functional test的source目录 -->
<plugin>
    <groupid>org.codehaus.mojo</groupid>
    <artifactid>build-helper-maven-plugin</artifactid>
    <executions>
        <execution>
            <id>add-functional-source</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-test-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>src/test/functional</source>
                </sources>
            </configuration
        </execution>
    </executions>
</plugin>

 

将上述代码注释后,加入的代码如下:

<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.codehaus.mojo
                                </groupid>
                                <artifactid>
                                    build-helper-maven-plugin
                                </artifactid>
                                <versionrange>
                                    [1.8,)
                                </versionrange>
                                <goals>
                                    <goal>add-source</goal>
                                </goals>
                            </pluginexecutionfilter>
                            <action>
                                <ignore></ignore>
                            </action>
                        </pluginexecution>
                    </pluginexecutions>
                </lifecyclemappingmetadata>
            </configuration>
        </plugin>
    </plugins>
</pluginmanagement>

 

然后maven -> update project 即可


转载来源: