Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not be resolved:
Failed to read artifact descriptor for org.apache.maven.plugins:maven-clean-plugin:jar:2.5:
Could not transfer artifact org.apache.maven.plugins:maven-clean-plugin:pom:2.5 from/to central (http://repo.maven.apache.org/maven2):
Failed to transfer http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom. Error code 501, HTTPS Required
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
既得。删除.m2,maven clean,...
我需要改变什么?
我相信错误就像它说的那样:它不支持未加密的请求。所以我们应该把你的URL更改为HTTPS。
https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom
如果由于某种原因不能使用HTTPS,请使用:
http://insecure.repo1.maven.org/maven2/
对于Maven Repos。
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
问题内容: 我是Maven的新手,尝试在Maven中设置我的第一个项目,但是在Eclipse中执行“ Run as-> Maven install”时收到以下错误消息。以下是我的settings.xml和pom.xml Settings.xml POM文件 错误信息: 如何解决收到的致命警报:protocol_version?我的Java版本是1.7,而Maven版本是3.3.3 问题答案: So
截至2020年1月15日,我在向中央存储库提出请求时收到以下回复: 我在控制台出现了这个错误 和使用站点插件: [错误]无法执行目标org.apache.maven.plugins:maven-site-plugin:2.2:项目上的站点(default-site)my-proj:siteToolException:无法从存储库解析站点描述符:ArtifactResolutionException
我正在使用setuptools创建一个快速设置。用于为用户安装依赖项的py脚本。该包只需要numpy和matlibplot。因此,代码如下所示: 运行sudopython安装程序。py install为我提供了以下信息: 我对setuptools的理解可能是错误的,因为我希望它能够从PyPI更新/安装可用的依赖项。有人能提供更多关于这方面的见解吗?
我正试图在运行Windows8.1和Python3.7的PC上安装新的Python模块,我发现一个解决方案是“停止微软构建工具2015”。我安装了这个软件包,但仍然面临这个错误。以下是屏幕截图(Visual C++14.0错误): 请帮我把这件事弄清楚,现在它让人头疼。
当我试图构建我的项目时,我有以下错误: