如何整合TortoiseSVN和Maven

时间:2013-03-19 02:35:31

标签: maven

我想使用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>

但我不确定如何将其附加到阶段。

0 个答案:

没有答案