pom中的spring-boot-maven-plugin 一直报错问题

只需要加入版本号即可,

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

猜你喜欢

转载自blog.csdn.net/qq_39564710/article/details/113100336