【错误解决】Springboot中Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found

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

解决:

很多人说加上版本号就可以了
但是我光加版本号不可以
clean了也不可以
后面不光加了版本号,还加了下面的字段才可以,记录在此!
【错误解决】Springboot中Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found_第1张图片

    <build>
        <plugins>
            
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
                <version>2.2.6.RELEASEversion>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackagegoal>
                        goals>
                    execution>
                executions>
            plugin>
        plugins>
    build>

你可能感兴趣的:(Java进阶,Springboot,plugin)