我将我的spring boot starter父级修改为2.3.0。通过此修改,我还介绍了Spring Maven插件中的版本
// eslint-disable-line react-hooks/exhaustive-deps
我能够完成type
..但是当我运行命令<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.0.RELEASE</version>
</plugin>
..我遇到以下错误。
org.apache.maven.lifecycle.LifecycleExecutionException:无法执行目标org.springframework.boot:spring-boot-maven-plugin:2.3.0.RELEASE:在项目上运行(默认cli)
有人可以帮忙吗?
整个pom.xml
mvn clean install
完成错误跟踪..
mvn clean install spring-boot:run
答案 0 :(得分:1)
我复制了您的pom.xml
,然后运行mvn clean install
,在此mvn spring-boot:run
之后-一切正常,应用程序运行正常。
也尝试
mvn clean install spring-boot:repackage