Import an Apache ant project

使用 importantcall task。

注:import 进来的任务,就算位置是在子目录,但是使用的 basedir 跟当前的 project 一样。

1
2
3
4
5
6
7
8
9
10
11
<!-- Path to Css Compressor-->
<import file="${basedir}/CompressorCss/build.xml" as="CompressorCss"/>
<!--invoke the target in the imported file-->
<target name="CompressCss">
<antcall target="CompressorCss.run">
<param name="dir.source" value="${basedir}/source" />
<param name="dir.output" value="${basedir}/output" />
<param name="dest.filename" value="test2" />
</antcall>
</target>
0%