Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. [ERROR] Provider message:
  2. [ERROR] The svn command failed.
  3. [ERROR] Command output:
  4. [ERROR] svn: E215004: Authentication failed and interactive prompting is disabled; see the --force-interactive option
  5. svn: E215004: Commit failed (details follow):
  6. svn: E215004: No more credentials or we tried too many times.
  7. Authentication failed
  8. svn: E215004: Additional errors:
  9. svn: E215004: No more credentials or we tried too many times.
  10. Authentication failed
  11.  
  12. mvn scm:checkin -Dmessage="relase" -Dusername=<username> -Dpassword=<password>.
  13.  
  14. <scm>
  15. <url>url</url>
  16. <connection>scm:svn:url</connection>
  17. <developerConnection>scm:svn:url</developerConnection>
  18.  
  19. </scm>
  20.  
  21. <!-- Project POM, or a corporate parent -->
  22. <properties>
  23. <project.scm.id>my-scm-server<project.scm.id>
  24. </properties>
  25.  
  26. <!-- User's settings.xml file -->
  27. <server>
  28. <id>my-scm-server</id>
  29. <username>username</username>
  30. <password>password</password> <!-- encrypted I hope! -->
  31. </server>
  32.  
  33. <!-- Project POM, or a corporate parent -->
  34. <properties>
  35. <project.scm.id>your.subversion.host<project.scm.id> <!-- note, no scm:svn part -->
  36. </properties>
  37.  
  38. <!-- User's settings.xml file -->
  39. <server>
  40. <id>your.subversion.host</id>
  41. <username>username</username>
  42. <password>password</password> <!-- encrypted I hope! -->
  43. </server>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement