minor updates to upload auth gradle plugin
This commit is contained in:
parent
f93d1412a4
commit
398cabe2a7
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue