I have tried to do following:
grails release-plugin ...
Updated to revision 56715. Committing local, please wait...
Enter a SVN commit message:
initial release
Committing code. Please wait...
Failed to stat working directory: svn: Commit failed (details follow):
svn: Authentication required for '<https://svn.codehaus.org:443> grails-plugins primary Subversion repository'
The reason why this failed is that I wasn't asked for username and password. But why?
So I created a ~/.grails/settings.xml with following contents:
user.svn.username.distribution.grailsplugins="david.trattnig"
user.svn.password.distribution.grailsplugins="abc"
grails.plugin.repos.distribution.grailplugins="https://david.trattnig:abc@.../grails-plugins"
grails.plugin.repos.discovery.grailplugins="http://svn.codehaus.org/grails-plugins"and triggered a release:
grails release-plugin -repository=grailsplugins
which results in another error message after the generation of the contents:
No repository configured for name grailsplugins. Set the 'grails.plugin.repos.distribution.grailsplugins' variable to the location of the repository.
What's wrong here? What else can I do?
Thanks
david