HHH-5898 - Improve authentication for Gradle uploads

This commit is contained in:
Steve Ebersole 2011-02-08 07:59:22 -06:00 committed by JPAV
parent a02a8a88b5
commit 58c615aef4
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) {
// create a auth task for each upload task...
final AuthenticationHandler authenticationHandler = project.getTasks().add(
"uploadAuthenticationHandler",
"uploadAuthenticationHandler-" + uploadTask.getName(),
AuthenticationHandler.class
);