HHH-5898 - Improve authentication for Gradle uploads

This commit is contained in:
Steve Ebersole 2011-02-08 07:59:22 -06:00
parent e7d5b9c0bf
commit c893a6fc6b
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class UploadAuthenticationManager implements Plugin<Project> {
public void execute(final Upload uploadTask) { public void execute(final Upload uploadTask) {
// create a auth task for each upload task... // create a auth task for each upload task...
final AuthenticationHandler authenticationHandler = project.getTasks().add( final AuthenticationHandler authenticationHandler = project.getTasks().add(
"uploadAuthenticationHandler", "uploadAuthenticationHandler-" + uploadTask.getName(),
AuthenticationHandler.class AuthenticationHandler.class
); );