我正在使用常春藤,我工作的公司有一些有趣的小常春藤和蚂蚁教程。
当在依赖项部分使用时,每个教程都有助于完全绕过箭头在 ivy 构建 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>
每个依赖项声明了什么?我认为 build-tests 已经在扩展运行时(来自配置声明),那么为什么依赖项 conf 重新声明了这一点?是需要吗?
testing
and没有在我拥有的simple
ivy.xml 中声明,它们是魔法并且存在于正式声明之外吗?
谢谢!