如何构建具有不同依赖关系的2个jar文件?

时间:2013-09-20 19:07:20

标签: java ant build dependencies ivy

我有两个不同版本的同一个第三方库,需要部署到两个不同的系统。每个系统都使用不同版本的库。

LibraryA LibraryB 具有相同的API界面,我的代码目前使用 LibraryA 构建并部署到 SystemA 。现在我需要第二个版本,它使用 LibraryB 构建并部署到 SystemB

当然,我可以复制/粘贴我的代码并使用不同的库编译每个项目,但这似乎是一个维护噩梦。两个库都可以同时安装和开发。目前我正在使用Ant,但一切都在桌面上,任何有用的东西都会被考虑。

2 个答案:

答案 0 :(得分:0)

您需要一个依赖管理器。 Apache ivy将是我的首选工具。

实施例

运行我的构建后:

├── build
│   ├── ivy
│   │   ├── com.myspotontheweb-demo-compile.html
│   │   ├── com.myspotontheweb-demo-runtimeA.html
│   │   ├── com.myspotontheweb-demo-runtimeB.html
│   │   └── ivy-report.css
│   ├── systemA
│   │   ├── log4j-1.2.17.jar
│   │   ├── slf4j-api-1.7.5.jar
│   │   └── slf4j-log4j12-1.7.5.jar     <-- Version 1.7.5
│   └── systemB
│       ├── log4j-1.2.17.jar
│       ├── slf4j-api-1.7.5.jar
│       └── slf4j-log4j12-1.7.4.jar     <-- Version 1.7.4
├── build.xml
└── ivy.xml

注意:

  • systemA systemB 目录包含同一个jar的两个不同版本。
  • 我已将我的构建配置为生成依赖关系管理报告。用于故障排除和文档。

的ivy.xml

Ivy使用一种称为配置的概念来管理不同的依赖组。在这种情况下,我们为编译所需的第三方jar创建配置,然后再处理另外两个以处理SystemA和SystemB依赖项:

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

    <configurations>
        <conf name="compile"  description="Required to compile application"/>
        <conf name="runtimeA" description="System A runtime dependencies" extends="compile"/>
        <conf name="runtimeB" description="System A runtime dependencies" extends="compile"/>
    </configurations>

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

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

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

    </dependencies>

</ivy-module>

的build.xml

<project name="demo" default="build" xmlns:ivy="antlib:org.apache.ivy.ant">

   <property name="build.dir" location="build"/>

   <target name="bootstrap" description="Install ivy">
      <mkdir dir="${user.home}/.ant/lib"/>
      <get dest="${user.home}/.ant/lib/ivy.jar" src="http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar"/>
   </target>

   <target name="resolve" description="Use ivy to resolve classpaths">
      <ivy:resolve/>
      <ivy:report todir='${build.dir}/ivy' graph='false' xml='false'/>
      <ivy:cachepath pathid="compile.path" conf="compile"/>
   </target>

   <target name="build" depends="resolve" description="Do something with each set of runtime jars">
      <ivy:retrieve pattern="${build.dir}/systemA/[artifact]-[revision](-[classifier]).[ext]" conf="runtimeA"/>
      <ivy:retrieve pattern="${build.dir}/systemB/[artifact]-[revision](-[classifier]).[ext]" conf="runtimeB"/>
   </target>

   <target name="clean" description="Cleanup build files">
      <delete dir="${build.dir}"/>
   </target>

   <target name="clean-all" depends="clean" description="Additionally purge ivy cache">
      <ivy:cleancache/>
   </target>

</project>

注意:

  • retrieve任务用于使用常春藤管理的文件集填充所选目录。
  • bootstrap 目标将下载并安装常春藤任务jar
  • cachepathreport任务是有用的附加任务
  • Ivy缓存下载的文件,因此包含cleancache任务(所有缓存变脏)总是一个好主意

答案 1 :(得分:0)

我设法使用增强的Ant构建文件和Eclipse设置。这满足了我们对在Eclipse中切换库,使用两个库进行编译/测试以及部署到不同环境的临时能力的要求。

Ant构建脚本最初是在LibraryA上编译和测试的,我复制并粘贴了另一个LIbraryB部分。这允许项目使用LibraryA和LibraryB进行编译,并在两个库上运行JUnint测试。

启动脚本已修改为   java -cp“Project.jar:$ SYMLINK_LIB / *”project.main [space delimited arguments]

$ SYMLINK_LIB包含两个不同环境之间不同的jar库的符号链接。

Eclipse配置

  1. 为LibraryA和LibraryB建立了一个项目
  2. 对于这两个项目,右键单击该项目 一个。点击“库”和“添加JAR”    一世。添加此库所需的jar文件 湾单击“订购和导出”选项卡    II。检查所有jar文件,以便导入此项目的任何Project都可以使用它们。 C。单击“确定”
  3. 右键单击需要导入LibraryA和LibraryB的项目 一个。单击“项目”选项卡和“添加”以添加项目库A(或库B) 湾如果该项目将由需要访问LibraryA或LibraryB的其他项目导入 - 单击“Order and Export”并选择LibraryA和LibraryB。 C。单击“确定”