如何将文件夹的url赋予ivy模式



在ivyconf.xml中,我有pattern='${ivy.settings.dir}/../../lib/Google Guava/[artifact].[ext]' />。正如您所看到的,我已经在模式中编写了Google Guava。然而,我有多个jar文件存储在同一级别的Google Guava文件夹中的另一个文件夹中。

我尝试过用**代替Google Guava,但我认为ivyconf.xml不支持它。我应该写什么来代替Google Guava,以便它搜索所有文件夹来解决依赖关系?

ivyconf.xml

    <resolvers>
        <filesystem name="local">
            <artifact   
                    pattern='${ivy.settings.dir}/../../lib/Google Guava/[artifact].[ext]' />
        </filesystem>
    </resolvers>
    <modules>
        <module organisation='FS' resolver='local' />
    </modules>

项目结构

project
  | - - - src
          ...
  | - - - lib
           | - - Google Guava
                     | - - guava.jar
           | - - Folee
                     | - - folee-1.4.0.jar

我已经找到了解决它的方法。

首先,我更改了ivy.xml;

<dependencies>
    <dependency org="Google Guava"  name="guava"    rev="17.0"  
                conf="compile->default"/>       
    <dependency org="Folee" name="folee-1.4.0"  rev="1.4.0" 
                conf="compile->default"/>       
</dependencies>

然后,我更改了ivyconf.xml;

<conf   defaultresolver="local"/>
<resolvers>
        <filesystem name="local">
            <artifact   
                pattern="${ivy.settings.dir}/../../lib/[organisation]/[artifact].[ext]" />
        </filesystem>
</resolvers>
<modules>
    <module resolver="local" />
</modules>

正如您所看到的,我并没有在自己的文件系统中使用organisation="FS"来解析它们。然后,我使用organisation变量作为存储文件夹名称的容器。

最后,我得到的是干净的项目层次结构。

相关内容

  • 没有找到相关文章

最新更新