svnURLからコードベースをチェックアウトしようとしています。クレデンシャルをハードコーディングするか、プロパティとして定義すると、正常に機能します。私の質問は、実行時に(つまり、build.xmlスクリプトを実行するときに)ユーザーから資格情報を取得することは可能ですか?
<target name="svn">
<svn **username="the username here" password="the password here"**>
<checkout url="the url" destPath="${checkout}" />
</svn>
</target>
前もって感謝します.. :)