ファイルから xml タグ全体をコピーして、別のファイルに追加しようとしています。私はフィルターチェーンをいじっています
<loadproperties srcFile="${dir}/file.xml">
<filterchain>
<linecontainsregexp>
<regexp pattern="<assembly-descriptor> "/>
</linecontainsregexp>
</filterchain>
</loadproperties>
regx パターンの作成方法がわかりません。
ソースファイルは次のようになります
<assembly-descriptor>
<somelines>
<somelines>
<somelines>
</assembly-descriptor>
このタグ全体を別のファイルにコピーする必要があります。