Plugin execution not covered by lifecycle

a 夏天 提交于 2019-12-26 19:15:45

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

mavan项目,pox文件报如下错误:

Description    Resource    Path    Location    Type
Plugin execution not covered by lifecycle configuration:
org.jetbrains.kotlin:kotlin-maven-plugin:1.2.31:compile (execution: compile, phase: compile)    pom.xml    /PaySystem    line 193    Maven Project Build Lifecycle Mapping Problem
解决方法:

1.添加标签<pluginManagement>

在标签<plugins>外面添加一层标签<pluginManagement>

2.<executions>
                    <execution>
                        <id>compile</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>testCompile</id>
                        <phase>test-compile</phase>
                        <goals>
                            <goal>testCompile</goal>
                        </goals>
                    </execution>
                </executions>

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!