私のビルドファイルには、次のスニペットがあるantターゲットがあります。
<replaceregexp replace="custom.dir=${basedir}/tasks/custom" byline="true" file="${basedir}/MyApp/configuration.properties">
<regexp pattern="custom.dir=(.*)"/>
</replaceregexp>
「custom.dir」プロパティを「configuration.properties」ファイルのパスに置き換えたかったのですが、ターゲットを実行すると、「custom.dir」プロパティのエントリが次のように変更されます。
custom.dir=c:arenaplaygroundmytestapp/tasks/custom
それ以外の
custom.dir=c:\arena\playground\mytestapp/tasks/custom
適切なファイルセパレーターを使用して「configuration.properties」ファイルへのパスを正しく書き込むにはどうすればよいですか。私はWindowsを使用しており、使用されるアリは ant 1.8 です。