在IntelliJ IDE中找不到Maven插件 [英] Maven Plugin not found in IntelliJ IDE

查看:189
本文介绍了在IntelliJ IDE中找不到Maven插件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的项目中有一个新错误,该错误位于pom.xml文件中.我该如何解决?

I have a new error in my project that is in the pom.xml file. How can I fix it?

IntelliJ提示中显示以下错误:

The error below shown in IntelliJ idea:

Plugin 'org.springframework.boot:spring-boot-maven-plugin:' not found  

推荐答案

我遇到了同样的问题.今年夏天,Intellij突然开始抛出此错误,但构建过程顺利进行.我只需要指定插件的版本,它就不会抛出此错误.

I had the same problem. This summer Intellij suddenly started throwing this error but build went through. I just had to specify version of plugin and it stopped throwing this error.

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <version>2.3.4.RELEASE</version>
</plugin>

这篇关于在IntelliJ IDE中找不到Maven插件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆