什么是小箭头 - >在常春藤依赖部分呢?(what does the little arrow

2019-07-04 03:41发布

我使用的常春藤,我在工作中该公司有几个有趣的小常春藤和蚂蚁教程。

每个教程有益完全围绕裙的箭头的确在常春藤构建XML文件是什么,在依赖关系部分时。

因此,鉴于这种设置:

<configurations>
      <conf name = "runtime" />
      <conf name = "build-tests" extends="runtime" />
   </configurations>
   ...
   <dependencies>
        ...
        <dependency org="blah" name="junit" rev="default" conf="build-tests->runtime"/>
        <dependency org="blahblah" name="xmlutil" rev="default" conf="build-tests->testing"/>
        <dependency org="blahblahblah" name="slf4j" rev="default" conf="build-tests->simple"/>
    </dependencies>

什么是每个属地申报? 我认为,建立检验已经延长运行时间(从配置声明),那么,为什么相依档案conf重申这一点? 是否需要?

testingsimple的的ivy.xml我有没有声明,他们是魔术和一个正式的声明之外存在吗?

谢谢!

Answer 1:

配置映射被设计成局部声明配置到远程模块中声明配置相关联。

   mylocalconf->remotemoduleconf

什么是配置? 它们是文件的逻辑分组,通常用于填充类路径或目录。

“简单”和“检测”不在的一部分用于远程Maven模块产生的标准配置 ,建议你从常春藤回购下载? 检查依赖的ivy文件,你会在那里找到丢失的配置。



文章来源: what does the little arrow -> do in the ivy dependency section?
标签: ivy