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

Posted 时光-ing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found相关的知识,希望对你有一定的参考价值。

报错内容:
Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’ not found.
解决办法:

更改前:
<build>
	<plugins>
       <plugin>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-maven-plugin</artifactId>
       </plugin>
    </plugins>
</build>

操作:给  <groupId>org.springframework.boot</groupId>加上版本号。

更改后:
<build>
	  <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <version>2.1.7.RELEASE</version>
            </plugin>
      </plugins>
</build>

以上是关于Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found的主要内容,如果未能解决你的问题,请参考以下文章

Freemarker中通过request获得contextPath

无法确定合适的驱动程序类

java 定时调度

Springboot--事件监听

Spring NoSuchBeanDefinitionException

如何给springboot切换默认的Tomcat容器