从蚂蚁常春藤中检索特定的罐子

时间:2015-04-13 09:41:12

标签: ant ivy

我使用ant + ivy作为项目。所以我假设我需要为ant运行<sql任务,因此我需要获取jdbc驱动程序1st。此外,在编译项目期间需要驱动程序。所以我希望有2个配置:

  • 默认:检索jdbc驱动程序和其他项目依赖项
  • jdbc :仅检索jdbc驱动程序。

然后只需使用不同的配置运行检索任务:

<!--Fetch all project dependencies, including jdbc driver-->
<ivy:retrieve pattern="${build.lib.home}/[artifact].[ext]" conf="default" />


<!-- Fetch only jdbc driver-->
<ivy:retrieve pattern="${build.lib.home}/[artifact].[ext]" conf="jdbc" />

的ivy.xml

<?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="" module="notebook-ivy"/>

    <configurations>
        <conf name="default" visibility="public" extend="jdbc"/>
        <conf name="jdbc" visibility="public"/>
    </configurations>

    <dependencies>
        <dependency org="mysql" name="mysql-connector-java" rev="5.1.6" conf="jdbc->default"/>
        <dependency org="org.apache.camel" name="camel-core" rev="2.15.1"/>

    </dependencies>
</ivy-module>

我正在使用公共mavencentral所以我无法更改服务器上的依赖项配置: 的 ivysettings.xml

<ivysettings>
  <settings defaultResolver="chain"/>
  <resolvers>
    <chain name="chain">
      <ibiblio name="central" m2compatible="true" root="http://central.maven.org/maven2/"/>
    </chain>
  </resolvers>
</ivysettings>

上述配置有效。但当默认扩展jdbc jdbc扩展默认时,它看起来很混乱。我是常春藤的新手,所以我的问题是:如果这是使用常春藤配置的正确方法。

1 个答案:

答案 0 :(得分:1)

“extends”操作使您可以在常春藤配置中对jar进行联合集操作,因此这样可以正常工作。

我的偏好是根据我预期的类路径要求对配置进行建模:

<configurations>
    <conf name="compile" description="Dependencies required to build project"/>
    <conf name="compile" description="Dependencies required to run project" extends="compile"/>
    <conf name="test" description="Dependencies required to test project" extends="runtime"/>
    <conf name="build" description="ANT build tasks"/>
</configurations>

然后可以使用常春藤缓存路径任务在构建文件中创建这些路径:

  <target name="resolve">
    <ivy:resolve/>

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

这种方法意味着像jdbc jar这样的东西会映射到“编译”配置,使其可用于javac任务:

  <target name="compile" depends="resolve">
    ..
    <javac ... classpathref="compile.path"/>
  </target>

但也包含在“运行时”配置中,该配置在构建jar包时作为依赖项保存到磁盘:

  <target name="build" depends="compile">
    <ivy:retrieve pattern="${dist.dir}/lib/[artifact].[ext]" conf="runtime"/>

    <manifestclasspath property="jar.classpath" jarfile="${dist.jar}">
      <classpath>
        <fileset dir="${dist.dir}/lib" includes="*.jar"/>
      </classpath>
    </manifestclasspath>

    <jar destfile="${dist.jar}" basedir="${build.dir}/classes">
      <manifest>
        <attribute name="Main-Class" value="${dist.main.class}"/>
        <attribute name="Class-Path" value="${jar.classpath}"/>
      </manifest>
    </jar>
  </target>