<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -64,10 +64,19 @@ target(processAuth:&quot;Prompts user for login details to create authentication mana
                 usr = usr+&quot;.default&quot;
                 psw = psw+&quot;.default&quot;
             }
-            ant.input(message:&quot;Please enter your SVN username:&quot;, addproperty:usr)
-            ant.input(message:&quot;Please enter your SVN password:&quot;, addproperty:psw)
-            def username = ant.antProject.getProperty(usr)
-            def password = ant.antProject.getProperty(psw)
+
+			def (username, password) = [argsMap.username, argsMap.password]
+			
+			if (!username) {
+				ant.input(message:&quot;Please enter your SVN username:&quot;, addproperty:usr)
+				username = ant.antProject.getProperty(usr)
+			}
+			
+			if (!password) {
+				ant.input(message:&quot;Please enter your SVN password:&quot;, addproperty:psw)
+	            password = ant.antProject.getProperty(psw)
+			}
+						
             authManager = SVNWCUtil.createDefaultAuthenticationManager( username , password )
 	        authManagerMap.put(authKey,authManager)
         }
@@ -106,6 +115,10 @@ target(releasePlugin: &quot;The implementation target&quot;) {
     }
     processAuth()
 
+	if (argsMap.message) {
+		commitMessage = argsMap.message
+	}
+	
     if(argsMap.repository) {
       configureRepositoryForName(argsMap.repository, &quot;distribution&quot;)
     }</diff>
      <filename>grails/scripts/ReleasePlugin.groovy</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>05c9dfced22a0c3b39bf0a58d745fd10e7f8522d</id>
    </parent>
  </parents>
  <author>
    <name>Luke Daley</name>
    <email>ld@modius.local</email>
  </author>
  <url>http://github.com/grails/grails/commit/e5d0db55668ae77b71c1c60f54718359268cabef</url>
  <id>e5d0db55668ae77b71c1c60f54718359268cabef</id>
  <committed-date>2009-11-07T15:47:18-08:00</committed-date>
  <authored-date>2009-11-06T22:17:33-08:00</authored-date>
  <message>GRAILS-5320 - Support passing commit message and credentials to release-plugin</message>
  <tree>fc1b0c45bc5a77ec2c18907db619039f7df2db3d</tree>
  <committer>
    <name>Luke Daley</name>
    <email>ld@modius.local</email>
  </committer>
</commit>
