Jenkins与Subversion

时间:2013-06-03 12:57:36

标签: svn jenkins hudson maven-release-plugin svnkit

/bin/sh: svn: command not found
Caused by: org.apache.maven.plugin.MojoFailureException: Unable to check for local modifications
Provider message:
The svn command failed.

即使已经安装了“Subversion插件”,Jenkins也找不到Subversion。

2 个答案:

答案 0 :(得分:11)

出现此错误的原因是您必须在pom.xml中明确定义maven-release-plugin应该使用svnkit。

以下是:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-release-plugin</artifactId>
            <version>2.4.1</version>
            <configuration>
                <goals>clean install</goals>
                <providerImplementations>
                    <svn>javasvn</svn>
                </providerImplementations>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>com.google.code.maven-scm-provider-svnjava</groupId>
                    <artifactId>maven-scm-provider-svnjava</artifactId>
                    <version>2.0.5</version>
                    <scope>compile</scope>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

答案 1 :(得分:0)

您需要在机器中安装subversion。如果你的操作系统是Centos,你可以运行

yum install subversion