我想使用 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>
但我不确定如何将它附加到一个阶段。