現在、ファイルは最新のリビジョンのみを保持しています。履歴が保持されている別のファイルを使用したい。ANT を使用するたびに、そのファイルに時刻とリビジョン番号を追加したいと考えています。ホーム画面には、そのファイルへのリンクが表示されます。
これは今書かれている方法です:
<target name="compile-java" depends="prepare,compile">
<exec dir="${project.dir}" executable="tools/version.sh" output="${src.web.dir}/date_compile.jsp">
<arg line="" />
</exec>
<propertyfile file="${src.web.dir}/date_compile.jsp">
</propertyfile>
</target>
古いリビジョンのデータも残しつつ、新しいリビジョンを追加したい。