用IDEA创建springboot项目遇到的问题Plugin 'org.springframework.boot:spring-boot-maven-plugin:' not found
在pom.xml文件中“spring-boot-maven-plugin” 报红了,显示not found 找不到。
在maven目录(\org\springframework\boot\spring-boot-maven-plugin\2.4.1)中,发现spring-boot-maven-plugin已经下载:
网上搜索其他人的解决方案是加上版本号:
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.2.6.RELEASE</version> //加上这句话 </plugin>
对应2.4.1版本添加版本号语句:
<version>2.4.1</version>