TortoiseSVN を使用して SVN リポジトリを更新したいと考えています。
これを maven pom の一部として実行したいと考えています。
Maven SCM プラグインには、コマンド ライン svn ツールが必要です。
exec-maven-plugin のように使ってみました
<executable>C:/Apps/TortoiseSVN/bin/TortoiseProc.exe</executable>
<workingDirectory>C:/MDMSrc/trunk/venus/</workingDirectory>
<arguments>
<argument>/command:update</argument>
<argument>/path:"C:/MDMSrc/trunk/venus/"</argument>
<argument>/closeonend:3</argument>
</arguments>
しかし、これをフェーズにアタッチする方法がわかりません。