TITLE:Antで条件分岐を行う

Antで条件分岐を行う

編集者:Terai Atsuhiro
作成日:2007-03-13
更新日:2024-01-19 (金) 11:15:36

概要

Conditionタスクを使って、例えばディレクトリの有無などによる条件で、Targetタスクを実行するかどうかを振り分けます。

build.xmlのサンプル

<!-- リソースディレクトリが存在すれば、プロパティ:have.resourcesは真 -->
<condition property="have.resources">
  <available file="${res.dir}" />
</condition>
<!-- ターゲット:prepare-resourceは、プロパティ:have.resourcesが
真の場合実行される -->
<target name="prepare-resource" depends="prepare" if="have.resources">
  <!-- 以下、ビルド用のリソースディレクトリを作って、リソースをコピー -->
  <mkdir dir="${build.res}" />
  <native2ascii encoding="UTF-8" src="${res.dir}" dest="${build.res}"
                includes="**/*.properties.utf8" ext="" />
  <copy todir="${build.res}">
    <fileset dir="${res.dir}" excludes="**/*.properties.*, **/*.bak" />
  </copy>
</target>
...省略...
<!-- ターゲット:compileで、ターゲット:prepare-resourceは呼び出されるが、
  実行されるされるかどうかはプロパティ:have.resourcesの値による -->
<target name="compile" depends="prepare-src, prepare-resource">
  <javac srcdir="${build.src}"
         destdir="${build.dest}"
         encoding="${compile.encoding}"
         debug="${compile.debug}"
         optimize="${compile.optimize}"
         source="${compile.source}"
         deprecation="${compile.deprecation}"
         classpathref="project.class.path"
  />
</target>

解説

以下は、libディレクトリが存在する場合、その下にあるjarファイルをパスに含めるように上書きするサンプルです。

|ant|

path id="project.class.path">

 <pathelement location="${build.dest}" />
 <pathelement path="${java.class.path}" />

/path>

condition property="have.library">

 <available file="${lib.dir}" />

/condition>

target name="init" if="have.library">

 <path id="project.class.path">
   <pathelement location="${build.dest}" />
   <fileset dir="${lib.dir}">
     <include name="*.jar" />
   </fileset>
   <pathelement path="${java.class.path}" />
 </path>

/target> ||<

参考リンク

コメント