2016-07-15 10 views
0

antビルドファイルでソースからデスティネーションにディレクトリをコピーする際に問題が発生しました。copydirコマンドを使用してbuild.xmlのソースからデスティネーションにフォルダをコピーしています

コード: -

<target name="getResources" depends="init"> 
    <delete dir="${resources.dir}"/>  
    <copy file="${svn.resources.url}" tofile="${resources.dir} " /> 
</target> 

エラー: -

build.xml:150: Use a resource collection to copy directories. 

どのように送信元から宛先にディレクトリをコピーするために私を提案してください。私はいくつかの方法を使用しました...のように

<export srcUrl="" destPath="">これも廃止され使用されているとも言います。いずれのプロパティも機能していません。方法を教えてください。

答えて

1
<!-- copy one file --> 
<copy file="/home/guest/workspace/so/src/build.xml" tofile="/home/guest/workspace/so/src/build2.xml" /> 

<!-- copy a folder recuresively --> 
<copy todir="/home/guest/workspace/so/src2"> 
    <fileset dir="/home/guest/workspace/so/src" includes="**" /> 
</copy> 

あなたもコピータスクのドキュメントと例を見てみたいことがありhere

関連する問題