Ivy与Ant集成

基本配置步骤如下: 
1、copy Ivy插件到ant_home/lib下; 
2、在项目根目录下新建ivysettings.xml; 
3、在项目根目录下新建ivy.xml,内容根据项目需要来; 
4、修改你原来的build.xml,如下:

Java代码
  1. 增加ivy需要的属性:   
  2. <property name="publish.version" value="0.1" />   
  3. <property name="ivy.report.todir" value="build" />   
  4. <property name="repository.dir" value="d:/Local_Repository" />   
  5.   
  6. 初始化ivy:   
  7. <ivy:settings file="ivysettings.xml" />   
  8.   
  9. 添加resolve target,用于下载依赖包:   
  10. <target name="resolve" description="--> resolve and retrieve dependencies with ivy">   
  11.         <ivy:resolve file="ivy.xml" conf="*" />   
  12.         <ivy:retrieve pattern="${lib.dir}/[conf]/[artifact]-[revision].[ext]" />   
  13. </target>   
  14.   
  15. 让原来的compile依赖于resolve:   
  16. <target name="compile" depends="resolve">
  17.   
  18. 添加publish target,这个不是必须的:   
  19. <target name="publish" depends="jar" description="publish">   
  20.         <ivy:publish resolver="local" pubrevision="${publish.version}" overwrite="true">   
  21.             <artifacts pattern="dist/[artifact].[ext]" />   
  22.         </ivy:publish>   
  23. </target>   
  24.   
  25. 添加report target用于生产漂亮的依赖报告,当然这个也不是必须的:   
  26. <target name="report" depends="resolve" description="--> resolve and retrieve dependencies with ivy">   
  27.         <ivy:report />   
  28. </target>  


完整的build.xml示例见http://code.google.com/p/smartpagination/source/browse/trunk/build.xml 

Over! 

至此,你已经为蚂蚁插上了Ivy的翅膀,下面的工作只是锦上添花而已——在Eclipse配置Ivy,这个工作的作用是把ivy.xml变成classpath的一部分,使得我们只需要维护ivy.xml不需要维护.classpath文件。 
配置步骤: 
1、Window->preference->ant->RunTime->Classpath->Ant Home Entries, 
右边Add External Jars,添加org.apache.ivy_2.1.0.cr1_20090319213629.jar。 
2、安装Ivy插件:Help->Install new software->add, 
Name: IvyDE,Location: http://www.apache.org/dist/ant/ivyde/updatesite 
安装成功后重启eclipse; 
3、重启eclipse后,Window->preference->ivy->settings 
Ivy settings path设为d:/workspace/ivysettings.xml(这个值取决于你的环境) 

至此,Eclipse的ivy插件配置好了,然后就可以为你的项目classpath添加ivy依赖了: 
选中项目->右键 属性->Java Build Path->Libraries->Add Library...->IvyIDE Managed Dependencies->finish->OK 
然后神奇的事情就出现了——虽然你一个jar包也没下载,只是在ivy.xml里面声明了一下,但是你的项目已经可以编译通过了,就好像那些第三方类库已经在你本地了一样。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值