Apache IVY - ติดตั้งงาน
งานติดตั้งใช้เพื่อติดตั้งโมดูลและการอ้างอิงในตัวแก้ไข ใช้เมื่อต้องการดาวน์โหลดและใช้สิ่งประดิษฐ์สาธารณะในที่เก็บส่วนตัว ตามค่าเริ่มต้นที่เก็บในเครื่องของผู้ใช้คือที่เก็บส่วนตัวของเขา / เธอและมีอยู่ใน $ {ivy.default.ivy.user.dir} / local
มาสร้าง Tester.java, build.xml และ ivy.xml ตามที่อธิบายไว้ในIVY - Resolve Task chapter
อัพเดต build.xml เพื่อใช้งานการติดตั้ง ivy
build.xml
<project name="test" default="resolve" xmlns:ivy="antlib:org.apache.ivy.ant">
<target name="resolve" description="resolve dependencies">
<ivy:resolve />
</target>
<target name="install" description="install dependencies">
<ivy:install organisation="commons-lang" module="commons-lang"
revision="2.6" transitive="true" overwrite="false"
from="public" to="local" />
</target>
</project>
ต่อไปนี้เป็นเงื่อนไขสำคัญ
organisation - ชื่อองค์กร
module - ชื่อโมดูลของโครงการ
revision - เวอร์ชันของโครงการ
from - จากประเภทที่เก็บ
to - เป็นประเภทที่เก็บ
การสร้างโครงการ
เนื่องจากเรามีไฟล์ทั้งหมดพร้อม เพียงแค่ไปที่คอนโซล นำทางไปยังE: > ivy โฟลเดอร์และเรียกใช้คำสั่ง ant
E:\ivy > ant install
Ivy จะเข้ามาดำเนินการแก้ไขการอ้างอิงคุณจะเห็นผลลัพธ์ต่อไปนี้
E:\ivy > ant install
Buildfile: E:\ivy\build.xml
install:
[ivy:install] :: Apache Ivy 2.5.0 - 20191020104435 :: https://ant.apache.org/ivy
/ ::
[ivy:install] :: 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:install] :: installing commons-lang#commons-lang;2.6 ::
[ivy:install] :: resolving dependencies ::
[ivy:install] found commons-lang#commons-lang;2.6 in public
[ivy:install] found junit#junit;3.8.1 in public
[ivy:install] :: downloading artifacts to cache ::
[ivy:install] :: installing in local ::
[ivy:install] published commons-lang to C:\Users\Acer\.ivy2\local\commons-lang
\commons-lang\2.6.part\sources\commons-lang.jar
[ivy:install] published commons-lang to C:\Users\Acer\.ivy2\local\commons-lang
\commons-lang\2.6.part\jars\commons-lang.jar
[ivy:install] published commons-lang to C:\Users\Acer\.ivy2\local\commons-lang
\commons-lang\2.6.part\javadocs\commons-lang.jar
[ivy:install] published ivy to C:\Users\Acer\.ivy2\local\commons-lang\commons-
lang\2.6.part\ivys\ivy.xml
[ivy:install] publish committed: moved C:\Users\Acer\.ivy2\local\commons-lang\
commons-lang\2.6.part
[ivy:install] to C:\Users\Acer\.ivy2\local\commons-lang\commons-lang\2
.6
[ivy:install] published junit to C:\Users\Acer\.ivy2\local\junit\junit\3.8.1.p
art\jars\junit.jar
[ivy:install] published ivy to C:\Users\Acer\.ivy2\local\junit\junit\3.8.1.par
t\ivys\ivy.xml
[ivy:install] publish committed: moved C:\Users\Acer\.ivy2\local\junit\junit\3
.8.1.part
[ivy:install] to C:\Users\Acer\.ivy2\local\junit\junit\3.8.1
[ivy:install] :: install resolution report ::
[ivy:install] :: resolution report :: resolve 0ms :: artifacts dl 21ms
---------------------------------------------------------------------
| | modules || artifacts |
| conf | number| search|dwnlded|evicted|| number|dwnlded|
---------------------------------------------------------------------
| default | 2 | 0 | 0 | 0 || 4 | 0 |
---------------------------------------------------------------------
BUILD SUCCESSFUL
Total time: 43 seconds
คุณสามารถตรวจสอบไฟล์ที่ดาวน์โหลดในตำแหน่งที่เก็บโลคัลดีฟอลต์ของไอวี่แคช ${ivy.default.ivy.user.dir} > .ivy2 > local ไดเรกทอรี