Ant 在构建期间不读取 IvySettings.xml 文件

Posted

技术标签:

【中文标题】Ant 在构建期间不读取 IvySettings.xml 文件【英文标题】:IvySettings.xml file is not read by Ant during build 【发布时间】:2020-11-24 11:09:27 【问题描述】:

我想从我的内部存储库下载我的 Ant 项目(在 Netbeans 上运行)中的所有依赖项/jar。

    我已经安装了 ivy jar 并将它放在我的 Apache ant 的 lib 文件夹中。

    我已将 ivysettings.xml 保存在我的根文件夹中(我有 build.xml)

2.i.我的 ivysettings.xml 文件是:

<ivysettings>
    <properties file="$ivy.settings.dir/ivysettings-file.properties"/>
    <settings defaultResolver="https://my-internal-repo.com/artifactory"/>
    <caches  defaultCacheDir="$cache.dir" checkUpToDate="false"/>
    <credentials host="https://my-internal-repo.com/artifactory" realm="Artifactory Realm" username="usrname" passwd="ABCD"/>
    <resolvers>
            <url name="https://my-internal-repo.com/artifactory">
            <ivy pattern="https://my-internal-repo.com/artifactory/webapp/#/artifacts/browse/tree/General/Maven-JCentral-cache/org/apache/ivy/ivy/2.2.0/ivy-2.2.0-sources.jar"/>
            <artifact pattern="https://my-internal-repo.com/npm-remote-cache/mongodb/-/mongodb-3.1.13.tgz"/>
            </url>
            <filesystem name="internal">
                    <ivy pattern="$repository.dir"/>
                    <artifact pattern="$repository.dir"/>
            </filesystem>
    </resolvers>
    <modules>
            <module organisation="com.myOrg.*" name=".*" resolver="internal"/>
    </modules>

2.ii。我的 ivysettings-file.properties 是:ivy.settings.dir=C:\Users\Documents\NetBeansProjects\ANTProject\JavaApplication1, cache.dir=C:\Users\Downloads\IVYCache, repository.dir=C:\Users\Downloads\repodir

2.iii。我的 build.xml 文件是:

    我在系统的环境变量中添加了 IVY_HOME:

    现在,当我从 cmd 的根文件夹(我有 build.xml 的位置)输入命令 "ant" 时,构建成功,但我在构建中的 cmd 上看不到关于 Ivy 的字眼日志。我认为它没有阅读我的常春藤设置。我该如何修复它以及如何验证我的 ivysettings.xml 是否已读取,因为我必须限制我的 netbeans 从 my-internal-repository 下载所有依赖项。

请让我知道我还缺少什么?

【问题讨论】:

【参考方案1】:

您的 ivy-2.2.0-sources.jar 可能只包含 ivy 的源代码,而不是您或 ant 需要的已编译类,请尝试下载 ivy-2.2.0.jar。

【讨论】:

以上是关于Ant 在构建期间不读取 IvySettings.xml 文件的主要内容,如果未能解决你的问题,请参考以下文章

Ant 在 JDK9 上的 maven 构建期间无法创建 .pkg 文件

在 Eclipse IDE 中发布构建期间发生错误?

从 Ant build.xml 中的 .properties 文件中读取

在 gatsby 构建期间无法读取样式化组件的主题属性

如何读取在 apache tomcat 中运行的 webapp 的清单文件?

ANT 构建:解析器中的变量:工件未定义