码迷,mamicode.com
首页 > 其他好文 > 详细

inheritAll 及 ant antfile案例分析

时间:2015-01-22 15:11:39      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

<?xml version="1.0"?>
<project name="a" default="targeta">
<property name="age" value="22"/>
<target name="targeta">
<ant antfile="b.xml" inheritAll="false"/>
</target>
</project>

 a.xml

 

 

 

<?xml version="1.0"?>
<project name="b" default="targetb">
<target name="targetb">
<echo message="echo message"/>
<echo message="${age}"/>
</target>
</project>

 b.xml

 

在a中调用b.xml ,

inheritAll为true是在b中可以得到age这个属性

inheritAll为false的时候再b中得不到age这个属性

inheritAll 及 ant antfile案例分析

标签:

原文地址:http://www.cnblogs.com/tianhao/p/4241565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!