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