public interface MavenRepositoryHandlerConvention
RepositoryHandler associated with each
 task of type Upload.| Modifier and Type | Field | Description | 
|---|---|---|
| static java.lang.String | DEFAULT_MAVEN_DEPLOYER_NAME | |
| static java.lang.String | DEFAULT_MAVEN_INSTALLER_NAME | 
| Modifier and Type | Method | Description | 
|---|---|---|
| GroovyMavenDeployer | mavenDeployer() | Adds a repository for publishing to a Maven repository. | 
| GroovyMavenDeployer | mavenDeployer(groovy.lang.Closure configureClosure) | Adds a repository for publishing to a Maven repository. | 
| GroovyMavenDeployer | mavenDeployer(java.util.Map<java.lang.String,?> args) | Adds a repository for publishing to a Maven repository. | 
| GroovyMavenDeployer | mavenDeployer(java.util.Map<java.lang.String,?> args,
             groovy.lang.Closure configureClosure) | Adds a repository for publishing to a Maven repository. | 
| GroovyMavenDeployer | mavenDeployer(java.util.Map<java.lang.String,?> args,
             Action<? super GroovyMavenDeployer> configureAction) | Adds a repository for publishing to a Maven repository. | 
| GroovyMavenDeployer | mavenDeployer(Action<? super GroovyMavenDeployer> configureAction) | Adds a repository for publishing to a Maven repository. | 
| MavenResolver | mavenInstaller() | Adds a repository for installing to a local Maven cache. | 
| MavenResolver | mavenInstaller(groovy.lang.Closure configureClosure) | Adds a repository for installing to a local Maven cache. | 
| MavenResolver | mavenInstaller(java.util.Map<java.lang.String,?> args) | Adds a repository for installing to a local Maven cache. | 
| MavenResolver | mavenInstaller(java.util.Map<java.lang.String,?> args,
              groovy.lang.Closure configureClosure) | Adds a repository for installing to a local Maven cache. | 
| MavenResolver | mavenInstaller(java.util.Map<java.lang.String,?> args,
              Action<? super MavenResolver> configureAction) | Adds a repository for installing to a local Maven cache. | 
| MavenResolver | mavenInstaller(Action<? super MavenResolver> configureAction) | Adds a repository for installing to a local Maven cache. | 
static final java.lang.String DEFAULT_MAVEN_DEPLOYER_NAME
static final java.lang.String DEFAULT_MAVEN_INSTALLER_NAME
GroovyMavenDeployer mavenDeployer()
mavenDeployer(java.util.Map, groovy.lang.Closure)GroovyMavenDeployer mavenDeployer(groovy.lang.Closure configureClosure)
configureClosure - A closure to use to configure the repository.mavenDeployer(java.util.Map, groovy.lang.Closure)GroovyMavenDeployer mavenDeployer(Action<? super GroovyMavenDeployer> configureAction)
configureAction - The action to use to configure the repository.mavenDeployer()GroovyMavenDeployer mavenDeployer(java.util.Map<java.lang.String,?> args)
| Key | Description of Associated Value | 
|---|---|
| name | (optional) The name of the repository. The default is mavenDeployer-{SOME_ID}. The name is used in the console output, to point to information related to a particular repository. A name must be unique amongst a repository group. | 
args - The argument to create the repositorymavenDeployer(java.util.Map, groovy.lang.Closure)GroovyMavenDeployer mavenDeployer(java.util.Map<java.lang.String,?> args, groovy.lang.Closure configureClosure)
args - The argument to create the repositoryconfigureClosure - A closure to use to configure the repository.GroovyMavenDeployer mavenDeployer(java.util.Map<java.lang.String,?> args, Action<? super GroovyMavenDeployer> configureAction)
args - The argument to create the repositoryconfigureAction - The action to use to configure the repository.MavenResolver mavenInstaller()
(java.util.Map, groovy.lang.Closure)MavenResolver mavenInstaller(groovy.lang.Closure configureClosure)
configureClosure - A closure to use to configure the repository.(java.util.Map, groovy.lang.Closure)MavenResolver mavenInstaller(Action<? super MavenResolver> configureAction)
configureAction - The action to use to configure the repository.mavenInstaller(Map, Action)MavenResolver mavenInstaller(java.util.Map<java.lang.String,?> args)
| Key | Description of Associated Value | 
|---|---|
| name | (optional) The name of the repository. The default is mavenInstaller-{SOME_ID}. The name is used in the console output, to point to information related to a particular repository. A name must be unique amongst a repository group. | 
args - The argument to create the repository(java.util.Map, groovy.lang.Closure)MavenResolver mavenInstaller(java.util.Map<java.lang.String,?> args, groovy.lang.Closure configureClosure)
args - The argument to create the repositoryconfigureClosure - A closure to use to configure the repository.MavenResolver mavenInstaller(java.util.Map<java.lang.String,?> args, Action<? super MavenResolver> configureAction)
args - The argument to create the repositoryconfigureAction - The action to use to configure the repository.