Я пытаюсь экстернализировать свое имя пользователя и пароль, но кажется, что формат svn-settings.xml неверен.Я не могу найти какие-либо ресурсы в Интернете, кроме этого поста здесь и следующего, что выдает ошибку.
В моем pom.xml я получил
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
...
<configuration>
<connectionUrl>scm:svn:http://my_hostname/im-tools-repos/trunk</connectionUrl>
<checkoutDirectory>${project.build.directory}/checkout/im-tools</checkoutDirectory>
</configuration>
</execution>
</executions>
</plugin>
В C: \ Documents and Settings \ my_uid.scm \ svn-settings.xml я получил
<svn-settings>
<user>my_uid</user>
<password>my_pwd</password>
</svn-settings>
Когда я запускаю Maven, он выдает следующие сообщения:
C:\Documents and Settings\my_uid\.scm\svn-settings.xml isn't well formed. SKIPPED.Unrecognised tag: 'user' (position: START_TAG seen <svn-settings>\r\n\t<user>... @2:7)
[INFO] Executing: cmd.exe /X /C "svn --non-interactive checkout http://my_hostname/im-tools-repos/trunk C:\test\bamboo\agent\target\checkout\im-tools"
[INFO] Working directory: C:\test\bamboo\agent\target\checkout
[ERROR] Provider message:
[ERROR] The svn command failed.
[ERROR] Command output:
[ERROR] svn: OPTIONS of 'http://my_hostname/im-tools-repos/trunk': authorization failed: Could not authenticate to server: rejected Basic challenge (http://my_hostname)
Итак, что я должен использовать вместо ?