mavan项目,pox文件报以下错误:app
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
解决方法:maven
1.添加标签<pluginManagement>ui
在标签<plugins>外面添加一层标签<pluginManagement>xml
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>ip