Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found的解决方法

Posted 秋9

tags:

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

pom.xml文件报Plugin 'org.springframework.boot:spring-boot-maven-plugin:' not found错误。

报错代码如下:

        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>

解决方法是增加版本号,例如:

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

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

Freemarker中通过request获得contextPath

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

java 定时调度

Springboot--事件监听

Spring NoSuchBeanDefinitionException

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