Apache IVY - 解决任务


Resolve任务用于解析ivy.xml中描述的依赖项,下载并放入ivy缓存中。

首先,我们在E: > ivy > src > com >tutorialspoint文件夹中创建一个 java 文件 Tester.java,该文件夹将作为 ant 项目的源文件夹。

应用程序.java

package com.tutorialspoint;

import org.apache.commons.lang.StringUtils;

public class Application {
   public static void main(String[] args) {
      String string = StringUtils.upperCase("Ivy Beginner Guide");
      System.out.println(string);
   }
}

上面的类使用apache commons lang库来使用它的类StringUtils。ivy 应该下载这个库,因此它应该在 ivy.xml 的依赖项部分下定义。以下是在E:>ivy文件夹中创建的ivy.xml 。

常春藤.xml

<?xml version="1.0" encoding="ISO-8859-1"?>
<ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
   <info
      organisation="com.tutorialspoint"
      module="test"
      status="integration">
   </info>
   <dependencies>
      <dependency org="org.apache.commons" name="commons-lang3" rev="3.9"/>
   </dependencies>
</ivy-module>

以下是重要术语。

  • ivy-module - 用于识别ivy版本、命名空间等的根元素。

  • info - 将项目标识为唯一实体的元素。

    • 组织- 组织名称

    • 模块- 模块的名称

    • status - 状态,如发布、集成或里程碑。

  • 依赖项- 将项目依赖项包含为具有以下属性的依赖项标签的元素。

    • org - 依赖项组织的名称

    • name - 依赖项的名称。

    • rev - 依赖项的版本。

构建.xml

<project name="test" default="resolve" xmlns:ivy="antlib:org.apache.ivy.ant">
   <target name="resolve" description="resolve dependencies">
      <ivy:resolve />
   </target>
</project<

以下是重要术语。

  • project - 用于标识项目名称、ivy 等的默认任务命名空间的根元素。

  • target - 创建新任务的目标元素及其描述。这包含一个 ivy 解析任务。当ant构建项目时,它会运行ivy解析任务,然后使用ivy解析依赖项。

构建项目

因为我们已经准备好了所有文件。只需进入控制台即可。导航到E:> ivy文件夹并运行 ant 命令。

E:\ivy > ant

Ivy 将开始行动,解决依赖关系,您将看到以下结果。

Buildfile: E:\ivy\build.xml

resolve:
[ivy:resolve] :: Apache Ivy 2.5.0 - 20191020104435 :: https://ant.apache.org/ivy
/ ::
[ivy:resolve] :: loading settings :: url = jar:file:/E:/Apache/apache-ant-1.9.14
/lib/ivy-2.5.0.jar!/org/apache/ivy/core/settings/ivysettings.xml
[ivy:resolve] :: resolving dependencies :: com.tutorialspoint#test;working@Acer-
PC
[ivy:resolve]   confs: [default]
[ivy:resolve]   found commons-lang#commons-lang;2.6 in public
[ivy:resolve]   found junit#junit;3.8.1 in public
[ivy:resolve] :: resolution report :: resolve 375ms :: artifacts dl 79ms
      ---------------------------------------------------------------------
      |                  |            modules            ||   artifacts   |
      |       conf       | number| search|dwnlded|evicted|| number|dwnlded|
      ---------------------------------------------------------------------
      |      default     |   2   |   2   |   0   |   0   ||   4   |   0   |
      ---------------------------------------------------------------------
[ivy:retrieve] :: retrieving :: com.tutorialspoint#test [sync]
[ivy:retrieve]  confs: [default]
[ivy:retrieve]  0 artifacts copied, 2 already retrieved (0kB/101ms)

BUILD SUCCESSFUL
Total time: 1 second

E:\ivy>

解析输出

以下是重要术语。

  • conf - 配置,在我们的例子中我们使用默认配置。

  • 模块- 表示模块总数、下载模块等。

  • 工件- 表示工件、下载的工件等的总数。

您可以在 ivy 缓存的默认位置${ivy.default.ivy.user.dir} > .ivy2 > 缓存文件夹中验证下载的文件。${ivy.default.ivy.user.dir} 默认是用户 home:$HOME。