Hi I need some further help to do my first release: I ran into troubles when I try to execute
mvn release:prepare The error below appears: [INFO] ------------------------------------------------------------------------ [INFO] Trace org.apache.maven.BuildFailureException: Unable to commit files Provider message: The svn command failed. Command output: svn: Commit failed (details follow): svn: MKACTIVITY of '/repos/asf/!svn/act/496c5cff-cefb-f248-bafe-68f9d94195f5': authorization failed: Could not authenticate to server: rejec ted Basic challenge (https://svn.apache.org) I checked my settings.xml which seems to be okay: <?xml version="1.0"?> <settings> <localRepository>C:\dev\maven\repository</localRepository> <servers> <!-- To publish a snapshot of some part of Maven --> <server> <id>apache.snapshots.https</id> <username>mykee</username> <password>{HbCXTONJUwkHAnfJjE7XYKh3a2qnY/GzZrduhO2dn2w=}</password> </server> <!-- To publish a website of some part of Maven --> <server> <id>apache.website</id> <username>mykee</username> <filePermissions>664</filePermissions> <directoryPermissions>775</directoryPermissions> </server> <!-- To stage a release of some part of Maven --> <server> <id>apache.releases.https</id> <username>mykee</username> <password>{HbCXTONJUwkHAnfJjE7XYKh3a2qnY/GzZrduhO2dn2w=}</password> </server> <!-- To stage a website of some part of Maven --> <server> <id>stagingSite</id> <!-- must match hard-coded repository identifier in site:stage-deploy --> <username>mykee</username> <filePermissions>664</filePermissions> <directoryPermissions>775</directoryPermissions> </server> </servers> <profiles> <profile> <id>apache-release</id> <properties> <gpg.passphrase>[my-password]</gpg.passphrase> </properties> </profile> </profiles> </settings> I also tried to put in my password in plain text, but no luck. Did I missed something or do I have not enough rights to commit a release? best regards mike
