Настройки для Maven для условного извлечения или обновления из SVN? - PullRequest
4 голосов
/ 28 апреля 2011

У меня есть следующие настройки в файле POM. Но мой сценарий сборки завершается неудачно с сообщением «SVN file заблокирован». Есть ли другой способ сделать условную проверку. Если проект уже извлечен, то я хочу обновить только в противном случае, если проектне извлечены, он должен проверить код и не должен обновлять его. Заранее спасибо.

      <!-- 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

1 Ответ

0 голосов
/ 31 октября 2013

Первый запуск

mvn clean

После этого запуска

mvn scm:update
...