常春藤:检索选择要使用的ivy.xml文件

时间:2017-02-10 18:53:15

标签: java ant ivy

有没有办法选择在调用ivy.xml时使用哪个ivy:retrieve文件?

查看at the documentation似乎我可以使用settingsRef属性来选择要使用的IVY设置文件,但它不是我想要修改的ivysettings.xml文件,而是{{1} }}。我的用例如下:

  • 我有一个用于获取编译时和运行时依赖关系的主ivy.xml文件
  • 我还有许多构建工具链依赖项,即某些Ant任务本身使用的jar(例如findbugs,cobertura,pmd,代码样式合规性检查等)。那些既不是编译时间也不是我的代码的运行时依赖性的东西。此外,在我使用此工具链构建的所有项目中都是一样的,所以我希望能够在一个单独的ivy.xml文件中识别这些依赖项,我可以简单地在我的项目中复制这些项目。

3 个答案:

答案 0 :(得分:2)

Short anwer是使用常春藤配置:

http://ant.apache.org/ivy/history/latest-milestone/tutorial/conf.html

常春藤配置可用于将依赖项分组以用于不同目的。您不需要多个常春藤文件。

实施例

这是我的决心目标:

<target name="resolve" description="Download dependencies and setup classpaths">
    <ivy:resolve/>
    <ivy:report todir='${reports.dir}/ivy' graph='false' xml='false'/>

    <ivy:cachepath pathid="compile.path" conf="compile"/>
    <ivy:cachepath pathid="test.path"    conf="test"/>
    <ivy:cachepath pathid="build.path"   conf="build"/>
</target>

然后可以在我需要类路径的各种任务中直接使用

<!-- Compiling code -->
<javac srcdir="${src.dir}"... classpathref="compile.path"/>

<!-- Testing code --> 
<junit haltonfailure="yes" fork="true">
  <classpath>
    <path refid="test.path"/>
    <pathelement path="${classes.dir}"/>
    <pathelement path="${test.classes.dir}"/>
  </classpath>
  ..
</junit>

<!-- 3rd party ANT tasks -->
<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpathref="build.path"/>

<taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml" classpathref="build.path"/>

..

我个人只使用检索任务来构建档案。这里我再次使用配置来控制我想要的罐子:

<ivy:retrieve pattern="${build.dir}/libs/[artifact].[ext]" conf="runtime"/>

<war destfile="${war.file}" webxml="${resources.dir}/web.xml">
  <fileset dir="${resources.dir}" excludes="web.xml"/>
  <classes dir="${build.dir}/classes"/>
  <lib dir="${build.dir}/libs"/>
</war>

IVY文件

<ivy-module version="2.0">
    <info organisation="com.myspotontheweb" module="demo"/>

    <configurations>
        <conf name="compile" description="Required to compile application"/>
        <conf name="runtime" description="Additional run-time dependencies" extends="compile"/>
        <conf name="test"    description="Required for test only" extends="runtime"/>
        <conf name="build"   description="ANT task dependencies"/>
    </configurations>

    <dependencies>
        <!-- compile dependencies -->
        <dependency org="org.slf4j" name="slf4j-api" rev="1.7.5" conf="compile->default"/>

        <!-- runtime dependencies -->
        <dependency org="org.slf4j" name="slf4j-log4j12" rev="1.7.5" conf="runtime->default"/>

        <!-- test dependencies -->
        <dependency org="junit" name="junit" rev="4.11" conf="test->default"/>

        <!-- Build dependencies --> 
        <dependency org="org.codehaus.sonar-plugins" name="sonar-ant-task" rev="2.1" conf="build->default"/>
       <dependency org="org.jacoco" name="org.jacoco.ant" rev="0.6.3.201306030806" conf="build->default"/>

    </dependencies>

</ivy-module>

所需的配置在顶部声明。注意一些是如何设置操作。例如,“compile”依赖项自动成为“runtime”和“test”的一部分。

其次,配置映射至关重要:

  • myconf-&gt;默认:包含传递依赖
  • myconf-&gt; master :只是没有依赖项的模块jar

答案 1 :(得分:1)

是的,但您必须在ivy:resolve中指定文件,参数名为file。他的原因是检索是post resolve task

答案 2 :(得分:0)

所以这就是我最终做到的:

<target name="fetch-buildsystem-deps" depends="configure-ivy-settings">
    <ivy:resolve file="ivy-buildsystem.xml"/>
    <ivy:retrieve conf="build-system"
                  pattern="${lib-ivy-buildsystem.dir}/[artifact]-[revision](-[classifier]).[ext]"
                  sync="true"
                  type="jar, bundle"/>
</target>

...文件ivy-buildsystem.xml仅标识我常春藤任务的依赖关系。例如。包含类似的东西:

<configurations>
    <conf name="build-system"  description="artifacts needed by the build-system itself"/>
</configurations>
<dependencies>
    <!--dependency org="ant-contrib" name="ant-contrib" rev="1.0b3" conf="build-system->master"/-->
    <dependency org="com.puppycrawl.tools"     name="checkstyle"   rev="5.9"   conf="build-system->default"/>
    <dependency org="com.google.code.findbugs" name="findbugs-ant" rev="3.0.0" conf="build-system->default"/>
    <dependency org="net.sourceforge.pmd"      name="pmd-java"     rev="5.5.3" conf="build-system->default"/>

</dependencies>