3

我的目标是将项目传递依赖关系划分为几个不交叉的集合:

  • 系统(jar 已经存在于 j2ee 容器中;手动列出,带有明确的固定版本)
  • 提供(要复制到 j2ee 容器的 jar;手动列出)
  • ear(罐子装在 ear/lib 内,其余的)

下面列出的我当前的解决方案有一些缺点:

  • 必须从ear conf中一一排除系统和提供的库
  • 尚未明确排除的新的第三方传递部门可能会意外听到
  • 有时必须添加明确的override重复库名称和版本

有什么方法可以消除这些缺点吗?

如果能够以某种方式定义一个 conf 作为依赖集减去其他 conf 的结果(通过优雅的冲突解决): ear = runtime - system-provided

当IVY-982得到修复时,也许<conf name="ear" extends="runtime,!system,!provided"/>可以支持符号。

寻找一个实际的解决方案来申请。

如果有解决方案,甚至愿意考虑切换到 gradle。

<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">

    <info organisation="example.com" module="parent"/>

    <configurations defaultconfmapping="compile->@;runtime->@;system->master;provided->runtime;ear->runtime;test->test(default)">
        <conf name="compile"/>
        <conf name="runtime" extends="compile"/>
        <conf name="ear" extends="runtime" description="Libs to be packed inside ear"/>
        <conf name="provided" description="Libs to copy to j2ee container"/>
        <conf name="system" description="Libs already present in j2ee container"/>
        <conf name="test" extends="ear,provided,system" description="Simulate container environment. Used by unit tests to catch dependency compatibility problems."/>
    </configurations>

    <dependencies>
        <dependency org="log4j" name="log4j" rev="1.2.15" force="true" conf="system"/>
        <dependency org="commons-collections" name="commons-collections" rev="3.1" force="true" conf="system"/>
        <dependency org="commons-lang" name="commons-lang" rev="2.2" force="true" conf="system"/>

        <dependency org="org.apache.velocity" name="velocity" rev="1.7" force="true" conf="provided"/>
        <dependency org="org.slf4j" name="slf4j-api" rev="1.5.6" force="true" conf="provided"/>
        <dependency org="org.slf4j" name="slf4j-log4j12" rev="1.5.6" force="true" conf="provided"/>
        <!-- ... -->

        <dependency name="module1" rev="latest.integration" conf="runtime,ear,provided,test"/>
        <dependency name="module2" rev="latest.integration" conf="runtime,ear,provided,test"/>
        <!-- ... -->

        <exclude org="commons-collections" conf="ear,provided"/>
        <exclude org="commons-lang" conf="ear,provided"/>
        <exclude org="org.apache.velocity" conf="ear"/>
        <!-- TODO: negation not working: https://issues.apache.org/jira/browse/IVY-982 -->
        <!--<exclude org="org.slf4j" conf="*, !provided"/>-->
        <exclude org="org.slf4j" conf="ear,test"/>
        <!-- ... -->

        <override org="org.slf4j" rev="1.5.6"/>
        <override org="commons-collections" module="commons-collections" rev="3.1"/>
        <override org="commons-lang" module="commons-lang" rev="2.2"/>
        <!-- ... -->
    </dependencies>

</ivy-module>

可以在IVY-1443附件中找到要试验的示例项目源。

4

1 回答 1

3

虽然使用MavenGradle可以排除提供的依赖项,但目前似乎无法使用 ivy 轻松实现它。

更新

在某些情况下,可以使用中间诱导模块和负正则表达式掩码来解决该任务:

    <dependency org="com.company" name="root.module" conf="ear" rev="latest.integration">
        <exclude org="^(?!com.company).*$" matcher="regexp"/>
    </dependency>

但我们已经转移到 Gradle,因为 Ivy 似乎正在失去动力。

于 2013-10-14T06:34:31.880 回答