Could not transfer artifact com.dpi.common:common-parent:pom:4.12.5 from/to central (http://repo1.maven.org/maven2/): transfer failed for http://repo1.maven.org/maven2/com/dpi/common/common-parent/4.12.5/common-parent-4.12.5.pom, status: 501 HTTPS Required
时间: 2023-12-13 18:03:22 浏览: 185
Maven报错: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources
这个错误是由于 Maven 尝试从 Maven Central Repository(http://repo1.maven.org/maven2/)下载依赖项时遇到了问题。根据错误提示,该仓库要求使用 HTTPS 进行传输,而不是 HTTP。因此,你需要将 Maven 的配置文件中相关的仓库地址修改为 HTTPS。
你可以打开 Maven 的配置文件(settings.xml),找到 `<mirrors>` 或 `<repositories>` 部分,并将 http://repo1.maven.org/maven2/ 修改为 https://repo1.maven.org/maven2/。修改后的配置应该类似于:
```xml
<mirrors>
<mirror>
<id>central</id>
<url>https://repo1.maven.org/maven2/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
```
保存文件后,重新运行 Maven 命令,应该能够解决该错误。如果还有其他问题,请提供更多的错误信息和配置文件内容,以便我能够更好地帮助你。
阅读全文