4

我在 POM 文件中有以下设置。但是我的构建脚本失败并显示“SVN 文件锁定”消息。有没有其他方法可以进行条件签出。如果项目已经签出,那么我只想更新,否则如果项目没有签出它应该检查代码并且不应该更新它。在此先感谢。

      <!-- Initial check out of  (will not do anything if directory already there) -->
      <execution>
        <id>check-out-project</id>
        <phase>generate-sources</phase>
        <goals>
          <goal>checkout</goal>
        </goals>
        <configuration>
          <checkoutDirectory>${project.build.directory}/project</checkoutDirectory>
          <connectionUrl>scm:svn:http://XX:XX/svn/repos/${XX}</connectionUrl>
          <username>${svn.username}</username>
          <password>${svn.password}</password>
          <skipCheckoutIfExists>true</skipCheckoutIfExists>
        </configuration>
      </execution>
      <!-- Update project (if directory was already there) -->
      <execution>
        <id>update-project</id>
        <phase>generate-sources</phase>
        <goals>
          <goal>update</goal>
        </goals>
        <configuration>
          <basedir>${project.build.directory}/project</basedir>
          <connectionUrl>scm:svn:http://XXX:XXX/svn/repos/${project}</connectionUrl>
          <username>${svn.username}</username>
          <password>${svn.password}</password>
          <revisionKey>project.revision</revisionKey>
        </configuration>
      </execution>

运行 maven 后的错误日志(请注意,我已将目录路径和 url 替换为 xxxx)

[INFO] Scanning for projects...

[INFO]

[INFO] ------------------------------------------------------------------------

[INFO] Building xxxxxx.and.xxxxxx 1.0-SNAPSHOT

[INFO] ------------------------------------------------------------------------

[INFO]

[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-xxxxxx-xxxxxx) @ xxxxxx.and.
xxxxxx ---

[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-sat) @ xxxxxx.and.xxxxxx ---

[INFO]
[INFO] --- maven-scm-plugin:1.4:checkout (check-out-xxxxxx) @ xxxxxx.and.xxxxxx --
-

[INFO] Removing x:\xxxx\xxxx\target\xxxxxx

[INFO] Executing: cmd.exe /X /C "svn --username xxxx --password ***** --no-aut
h-cache --non-interactive checkout http://xxxx:xxx/svn/repos/xxxx/xxx x:\
projects\xxxx\target\xxxxxx"

[INFO] Working directory: x:\xxxx\xxxx\target

[INFO]

[INFO] --- maven-scm-plugin:1.4:update (update-xxxxxx) @ xxxxxx.and.xxxxxx ---

[INFO] Executing: cmd.exe /X /C "svn --username xxxx --password ***** --no-aut
h-cache --non-interactive update x:\xxxx\xxx\target\xxxxxx"

[INFO] Working directory: x:\xxx\xxx\target\xxxxxx

[INFO] Svn command failed due to some locks in working copy. We try to run a 'sv
n cleanup'.

[INFO] Executing: cmd.exe /X /C "svn"

[INFO] Working directory: x:\xxx\xxxx\target\xxxxxx

[ERROR] Provider message:

[ERROR] The svn command failed.

[ERROR] Command output:

[ERROR] svn: Working copy 'x:\xxxx\xxxx\target\xxxxxx' locked
svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
Type 'svn help' for usage.


[INFO] ------------------------------------------------------------------------

[INFO] BUILD FAILURE

[INFO] ------------------------------------------------------------------------

[INFO] Total time: 8:03.303s

[INFO] Finished at: Thu Apr 28 17:24:50 BST 2011

[INFO] Final Memory: 4M/15M

[INFO] ------------------------------------------------------------------------

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-scm-plugin:1.4:upd
ate (update-xxxxxx) on project xxxxxx.and.xxxxxx: Command failed.The svn command f
ailed. -> [Help 1]

[ERROR]

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR]

[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionE
xception
4

1 回答 1

0

第一次运行

mvn clean

在这次运行之后

mvn scm:update
于 2013-10-31T14:46:29.673 回答