| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="." name="main" default="default">
- <basename property="project" file="${basedir}" />
- <dirname property="applicationserver.dir" file="${basedir}../" />
- <dirname property="code.dir" file="${basedir}../../" />
- <property file="${applicationserver.dir}/a_build/build.properties" />
- <include file="${applicationserver.dir}/a_build/build_common.xml" as="common" />
- <target name="default">
- <for-contrib param="line">
- <tokens>
- <file file="${store.dir}/jars/manifest_o2collect.cfg" />
- </tokens>
- <sequential>
- <copy tofile="D:/o2collect/store/jars/@{line}" file="${store.dir}/jars/@{line}" overwrite="true" />
- </sequential>
- </for-contrib>
- <for-contrib param="line">
- <tokens>
- <file file="${store.dir}/manifest_o2collect.cfg" />
- </tokens>
- <sequential>
- <copy tofile="D:/o2collect/store/@{line}" file="${store.dir}/@{line}" overwrite="true" />
- </sequential>
- </for-contrib>
- <for-contrib param="line">
- <tokens>
- <file file="${ext.dir}/manifest_o2collect.cfg" />
- </tokens>
- <sequential>
- <copy tofile="D:/o2collect/commons/ext/@{line}" file="${ext.dir}/@{line}" overwrite="true" />
- </sequential>
- </for-contrib>
- <copy file="${store.dir}/jars/manifest_o2collect.cfg" tofile="D:/o2collect/store/jars/manifest.cfg" />
- <copy file="${store.dir}/manifest_o2collect.cfg" tofile="D:/o2collect/store/manifest.cfg" />
- <copy file="${ext.dir}/manifest_o2collect.cfg" tofile="D:/o2collect/commons/ext/manifest.cfg" />
- <copy file="${store.dir}/jars/o2_collect_console.jar" tofile="D:/o2collect/console.jar" />
- </target>
- </project>
|