Plugin 'org.springframework.boot:spring-boot-mavenplugin-:2.1.6' not found
时间: 2023-11-03 10:59:07 浏览: 103
spring-boot-maven-plugin-2.1.6.RELEASE.jar
5星 · 资源好评率100%
引用中提到了两种解决方法:
1. 一种是在pom.xml文件中加入以下配置:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.2.6.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
这样可以解决Plugin 'org.springframework.boot:spring-boot-maven-plugin:2.1.6' not found的问题。
2. 另一种是在apache-maven-3.5.2/conf/setting.xml文件中加入以下配置:
<profiles>
<profile>
<id>alimaven</id>
<repositories>
<repository>
<id>aliyun</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>aliyun</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
这样可以解决Maven更新问题。
阅读全文