我无法弄清楚如何使用Apache Ivy

时间:2015-10-15 20:59:21

标签: eclipse apache jar ivy

我想在我的本地网络上拥有一个JAR文件存储库,因此所有其他Eclipse用户在Repository中使用相同的JAR文件来获取它们的依赖关系。我不想要Maven或Ant,我只是想用Ivy来分享我的JAR文件,我该怎么做?我应该使用哪个XML文件?无法在线找到简单的解决方案。

1 个答案:

答案 0 :(得分:0)

首先,这里是ivy.xml文件的一个例子

selManga

其次,重要的一步是创建一个ivy.settings文件。

<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="[your organization]"
        module="your module[for example commons-io]"
        status="integration">
    </info>
    <publications>
        <artifact name="[your jar name]" ext="jar"/>
    </publications>

这只是ivy.setting文件的一部分,解析器名称应该代表 您自己的出版物存储库和从本地网络下载jar。 详细了解如何在http://ant.apache.org/ivy/history/2.1.0/tutorial/defaultconf.html上调整常春藤设置 。 常春藤不能为你做出版工作,你将不得不使用蚂蚁 只是小build.xml文件。 阅读apache网站http://ant.apache.org/ivy/history/2.2.0/use/publish.html

我希望它会有所帮助。