工件的type和ext属性存在问题

时间:2010-05-21 14:35:26

标签: ivy

我在ivy.xml中有以下定义

<dependency org="southbeach" name="ego" rev="4.3.1" conf="properties->asterik" >
  <artifact name="ego" type="conf" ext="conf" conf="properties->asterik"/>
</dependency>

我有运行时需要的扩展名conf或属性的文件,在ivysettings.xml中,我有以下内容:

<filesystem name="privateFSa">
  <artifact pattern="${localRepositoryLocation}/[artifact].[ext]" />
</filesystem>

它总是试图寻找ego.jar而不是ego.conf。可以请有人对此有所了解吗?我做错了什么或常春藤只支持tar,zip,gz,jar而不支持属性或配置文件?

我现在在ivysettings.xml

中做了解决方法
<filesystem name="privateFSa">
      <artifact pattern="${localRepositoryLocation}/[artifact].conf" />
</filesystem>

但这并不适合硬编码conf。 谢谢,
阿尔马斯

1 个答案:

答案 0 :(得分:0)

如果没有更多细节示例,我不确定是什么问题。

这是我的工作项目

$ find . -type f
./build.xml
./ivy.xml
./ivysettings.xml
./repository/southbeach/ego/4.3.1/confs/ego.conf

ivy文件声明项目依赖项:

$ cat ./ivy.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<ivy-module version="2.0">
    <info organisation="com.myspotontheweb" module="demo"/>
    <dependencies>
        <dependency org="southbeach" name="ego" rev="4.3.1">
            <artifact name="ego" type="conf"/>
        </dependency>
    </dependencies>
</ivy-module>

常春藤设置文件

$ cat ./ivysettings.xml
<ivysettings>
    <settings defaultResolver="privateFSa"/>
    <resolvers>
        <filesystem name="privateFSa">
            <artifact pattern="${ivy.settings.dir}/repository/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]" />
        </filesystem>
    </resolvers>
</ivysettings>

下载很好

$ ant
Buildfile: build.xml
..
..
[ivy:retrieve]  found southbeach#ego;4.3.1 in privateFSa
[ivy:retrieve] downloading /????/repository/southbeach/ego/4.3.1/confs/ego.conf ...
[ivy:retrieve] .. (0kB)
..
..

您是否可能需要清理常春藤缓存目录? (参见ivy:cleancache任务)

我在想,在添加“工件”条目之前,常春藤可能会选择较旧的模块分辨率。