Could not find artifact org.springframework.boot:spring-boot-maven-plugin:pom: in central
时间: 2023-11-05 11:51:41 浏览: 177
搭建springboot项目的 pom.xml配置,只需要创建maven项目把pom替换即可
5星 · 资源好评率100%
您在构建项目时遇到了找不到org.springframework.boot:spring-boot-maven-plugin:pom的问题。这个问题可能是由于您的Maven配置中缺少相应的镜像或仓库导致的。根据引用中提供的配置信息,您可以尝试将以下内容添加到您的Maven配置文件中(通常是settings.xml):
```
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>https://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<mirror>
<id>jboss-public-repository-group</id>
<mirrorOf>central</mirrorOf>
<name>JBoss Public Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
</mirror>
</mirrors>
```
此外,还需要确保您的Maven配置文件中的profiles部分包含与您使用的JDK版本相对应的配置。根据引用中提供的示例,如果您正在使用JDK 19,则可以添加以下配置:
```
<profiles>
<profile>
<id>jdk-19</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>19</jdk>
</activation>
<properties>
<maven.compiler.source>19</maven.compiler.source>
<maven.compiler.target>19</maven.compiler.target>
<maven.compiler.compilerVersion>19</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
```
通过将这些配置添加到您的Maven配置文件中,您应该能够解决找不到spring-boot-maven-plugin的问题。请记得在进行任何更改之前备份您的配置文件。希望这能帮助到您!
阅读全文