无法正确安装 Apache Ant 的二进制版本

发布于 2024-12-08 10:35:50 字数 520 浏览 0 评论 0原文

我按照教程来安装 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.

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我心暖 2024-12-15 10:35:50

Ant 似乎正在尝试从 Internet 上的 Maven 存储库下载一些 JAR,在本例中是在 JBoss 站点上。他们不久前更改了存储库的位置。

以下是更改 URL 的方法:

  1. 转到您的 ant 安装文件夹。

  2. 在您最喜欢的文本编辑器中打开 fetch.xml。

  3. 搜索 http://repository.jboss.org/maven2 并将其替换为 https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/

再次运行可选命令:

ant -f fetch.xml -Ddest=system

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:

  1. Go to your ant installation folder.

  2. Open fetch.xml in your favorite text editor.

  3. 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:

ant -f fetch.xml -Ddest=system

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文