我使用的常春藤,我在工作中该公司有几个有趣的小常春藤和蚂蚁教程。
每个教程有益完全围绕裙的箭头的确在常春藤构建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重申这一点? 是否需要?
该testing
和simple
的的ivy.xml我有没有声明,他们是魔术和一个正式的声明之外存在吗?
谢谢!