无法正确安装 Apache Ant 的二进制版本
我按照此教程来安装 Apache Ant 的二进制版本。
不幸的是,当我进入“可选”第 5 步时,我无法获取一些资源。即,处理 Maven 工件任务时发生错误。
当我尝试导航到服务器时,它们似乎已关闭或不存在。还有其他人遇到这个问题吗?
我刚刚找到了关于 HTTP 403 响应代码的信息,
此响应由 Apache Web 服务器在目录时返回 列表已被禁用。
那么,启用目录列表可以解决这个问题吗?如果是这样,我该如何实现呢?
I'm following this tutorial to install the binary edition of Apache Ant.
Unfortunately, when I get to the "optional" step 5, I'm unable to get some resources. That is, an error occurs while processing the Maven artifact tasks.
When I try to navigate to the servers, it appears that they are either down, or non-existent. Anyone else encounter this problem?
And I just found this piece of information regarding the HTTP 403 response code,
This response is returned by the Apache web server when directory
listings have been disabled.
So, would enabling directory listings fix this? And if so, how do I go about enabling that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ant 似乎正在尝试从 Internet 上的 Maven 存储库下载一些 JAR,在本例中是在 JBoss 站点上。他们不久前更改了存储库的位置。
以下是更改 URL 的方法:
转到您的 ant 安装文件夹。
在您最喜欢的文本编辑器中打开 fetch.xml。
搜索 http://repository.jboss.org/maven2 并将其替换为 https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/
再次运行可选命令:
It seems that Ant is trying to download some JARs from a Maven repository on the Internet, in this case on JBoss' site. They changed the location of their repository some time ago.
Here's how to change the URL:
Go to your ant installation folder.
Open fetch.xml in your favorite text editor.
Search for http://repository.jboss.org/maven2 and replace it with https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/
Run the optional command again: