minor updates to upload auth gradle plugin

This commit is contained in:
Steve Ebersole 2011-03-21 15:32:50 -05:00
parent f93d1412a4
commit 398cabe2a7
2 changed files with 6 additions and 2 deletions

View File

@ -12,6 +12,7 @@ repositories {
dependencies {
compile gradleApi()
compile localGroovy()
compile 'org.slf4j:slf4j-api:1.6.0'
compile 'org.apache.ant:ant:1.7.0'
compile 'org.apache.maven:maven-ant-tasks:2.1.0'
compile 'org.apache.maven.wagon:wagon-http:1.0-beta-6'

View File

@ -33,8 +33,11 @@ import org.gradle.api.tasks.TaskAction;
import org.gradle.api.tasks.Upload;
/**
* Responsible for locating and injecting authentication information into the JBoss Nexus repository config for upload
* which it does, based on set up in
* Acts as the main authentication coordinator for the upload. It will delegate to all {@link AuthenticationProvider}
* instances registered with the {@link AuthenticationProviderRegistry} looking for any that provide
* {@link Authentication} against the given {@link RemoteRepository} defined for each upload task.
* <p/>
* IMPL NOTE : This will need to change drastically whenever Gradle moves to its {@code Publication} scheme for uploads.
*
* @author Steve Ebersole
*/