问题:
如果您的文件遵循特定的命名约定(例如,包括区域设置),并且需要由ant脚本按每个文件进行处理,那么在ant中有什么可能性?
示例:
待处理文件:
- file_en-US.txt
- file_en-GB.txt
应该为所有文件调用一个任务,并将其文件名作为参数。文件名中包含的区域设置需要由regex提取,并作为参数传递给外部工具。一旦你有了文件名,提取就会直接进行。
限制:
- Plain Ant(1.7),不允许任何扩展,不允许像foreach这样的自定义/contrib任务。需要运行每个香草蚂蚁(1.7)的安装
我很确定,如果不创建自己的自定义任务或使用ant contrib,就无法为每个文件通用地调用任务。然而,有一些方法可以让ant自动检索ant contrib(或自定义jar),这样您就可以获得所需的结果。这是TIAnt使用的方法,它有类似的要求(这样任何人都可以很容易地为开发做出贡献),
步骤1:下载Apache Ivy
ApacheIvy可以用于检索依赖项,例如ant contrib。我使用以下蚂蚁属性和目标下载并加载Ivy
<property name="ivy.install.version" value="2.2.0" />
<property name="ivy.jar.dir" location="${user.home}/.ivy2/jars" />
<property name="ivy.jar.file" location="${ivy.jar.dir}/ivy-${ivy.install.version}.jar" />
<target name="-download-ivy" unless="ivy.downloaded">
<mkdir dir="${ivy.jar.dir}" />
<!-- download Ivy from web site so that it can be used even without any special installation -->
<echo message="installing ivy..." />
<get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
dest="${ivy.jar.file}"
usetimestamp="true"
verbose="true" />
</target>
<target name="-check-ivy-downloaded">
<condition property="ivy.downloaded">
<and>
<available file="${ivy.jar.file}" />
<available file="${ivy.jar.dir}/jsch-0.1.44-1.jar" />
</and>
</condition>
</target>
<target name="-load-ivy" depends="-check-ivy-downloaded,-download-ivy" unless="ivy.loaded">
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="*.jar" />
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path" />
<property name="ivy.loaded" value="true" />
</target>
步骤2:添加ant contrib依赖
Ivy使用"Ivy文件"来指定依赖关系。你可以添加蚂蚁contrib如下
<dependency org="ant-contrib" name="ant-contrib" rev="1.0b3" transitive="false"/>
一个完整的ivy文件可能看起来像
<?xml version="1.0" encoding="ISO-8859-1"?>
<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="org.my"
module="mymodule"
status="release"/>
<dependencies>
<dependency org="ant-contrib" name="ant-contrib" rev="1.0b3" transitive="false"/>
</dependencies>
</ivy-module>
您也可以使用echoxml从ant脚本中动态输出此文件
步骤3:检索依赖项
使用Ivy下载ant-contrib
(或您指定的任何依赖项)
<target name="retrieve" description="retrieve dependancies with ivy" depends="-load-ivy">
<ivy:retrieve />
<ivy:artifactproperty name="[module].[artifact]" value="lib/[artifact]-[revision].[ext]" />
</target>
步骤4:加载ant-contrib
<target name="-load-ant-contrib" depends="retrieve" unless="ant.contrib.loaded">
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="${ant-contrib.ant-contrib}" />
</classpath>
</taskdef>
<property name="ant.contrib.loaded" value="true" />
</target>
步骤5:创建使用for
迭代文件的目标
<target name="mytarget" depends="-load-ant-contrib">
<for param="file">
<fileset dir="somedir" includes="..." />
<sequential>
<!-- do stuff with @{file} -->
</sequential>
</for>
</target>
如果你只需要下载ant contrib,而不想使用Ivy来管理其他依赖项,那么你可以跳过上面的大部分内容,只需使用get下载ant-contrib
,就像上面下载Ivy一样。