Interface ArtifactRepositoryContainer
- All Superinterfaces:
- Collection<ArtifactRepository>,- Configurable<ArtifactRepositoryContainer>,- DomainObjectCollection<ArtifactRepository>,- Iterable<ArtifactRepository>,- List<ArtifactRepository>,- NamedDomainObjectCollection<ArtifactRepository>,- NamedDomainObjectList<ArtifactRepository>,- SequencedCollection<ArtifactRepository>
- All Known Subinterfaces:
- RepositoryHandler
A ResolverContainer is responsible for managing a set of ArtifactRepository instances. Repositories are arranged in a sequence.
You can obtain a ResolverContainer instance by calling Project.getRepositories() or
 using the repositories property in your build script.
The resolvers in a container are accessible as read-only properties of the container, using the name of the resolver as the property name. For example:
 repositories.maven { name = 'myResolver' }
 repositories.myResolver.url = uri('some-url')
 
 A dynamic method is added for each resolver which takes a configuration closure. This is equivalent to calling
 getByName(String, groovy.lang.Closure). For example:
 repositories.maven { name = 'myResolver' }
 repositories.myResolver {
     url = uri('some-url')
 }
 - 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionbooleanadd(ArtifactRepository repository) Adds a repository to this container, at the end of the repository sequence.voidaddFirst(ArtifactRepository repository) Adds a repository to this container, at the start of the repository sequence.voidaddLast(ArtifactRepository repository) Adds a repository to this container, at the end of the repository sequence.Locates an object by name, failing if there is no such object.Locates an object by name, failing if there is no such object.Locates an object by name, failing if there is no such object.getByName(String name, Action<? super ArtifactRepository> configureAction) Locates an object by name, failing if there is no such object.Methods inherited from interface java.util.CollectionparallelStream, removeIf, stream, toArrayMethods inherited from interface org.gradle.util.ConfigurableconfigureMethods inherited from interface org.gradle.api.DomainObjectCollectionaddAllLater, addLater, all, all, configureEach, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withTypeMethods inherited from interface java.util.Listadd, addAll, addAll, clear, contains, containsAll, equals, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeLast, replaceAll, retainAll, reversed, set, size, sort, spliterator, subList, toArray, toArrayMethods inherited from interface org.gradle.api.NamedDomainObjectCollectionaddAll, addRule, addRule, addRule, findByName, getAsMap, getCollectionSchema, getNamer, getNames, getRules, named, named, named, named
- 
Field Details- 
DEFAULT_MAVEN_CENTRAL_REPO_NAME- See Also:
 
- 
DEFAULT_MAVEN_LOCAL_REPO_NAME- See Also:
 
- 
MAVEN_CENTRAL_URL- See Also:
 
- 
GOOGLE_URL- See Also:
 
 
- 
- 
Method Details- 
addAdds a repository to this container, at the end of the repository sequence.- Specified by:
- addin interface- Collection<ArtifactRepository>
- Specified by:
- addin interface- List<ArtifactRepository>
- Specified by:
- addin interface- NamedDomainObjectCollection<ArtifactRepository>
- Parameters:
- repository- The repository to add.
- Returns:
- trueif the item was added, or false if an item with the same name already exists.
 
- 
addFirstAdds a repository to this container, at the start of the repository sequence.- Specified by:
- addFirstin interface- List<ArtifactRepository>
- Specified by:
- addFirstin interface- SequencedCollection<ArtifactRepository>
- Parameters:
- repository- The repository to add.
 
- 
addLastAdds a repository to this container, at the end of the repository sequence.- Specified by:
- addLastin interface- List<ArtifactRepository>
- Specified by:
- addLastin interface- SequencedCollection<ArtifactRepository>
- Parameters:
- repository- The repository to add.
 
- 
getByNameLocates an object by name, failing if there is no such object.This operation is eager and will cause the returned element to be realized. - Specified by:
- getByNamein interface- NamedDomainObjectCollection<ArtifactRepository>
- Parameters:
- name- The object name
- Returns:
- The object with the given name. Never returns null.
- Throws:
- UnknownRepositoryException
 
- 
getByNameArtifactRepository getByName(String name, @DelegatesTo(ArtifactRepository.class) Closure configureClosure) throws UnknownRepositoryException Locates an object by name, failing if there is no such object. The given configure closure is executed against the object before it is returned from this method. The object is passed to the closure as its delegate.This operation is eager and will cause the returned element to be realized. - Specified by:
- getByNamein interface- NamedDomainObjectCollection<ArtifactRepository>
- Parameters:
- name- The object name
- configureClosure- The closure to use to configure the object.
- Returns:
- The object with the given name, after the configure closure has been applied to it. Never returns null.
- Throws:
- UnknownRepositoryException
 
- 
getByNameArtifactRepository getByName(String name, Action<? super ArtifactRepository> configureAction) throws UnknownRepositoryException Locates an object by name, failing if there is no such object. The given configure action is executed against the object before it is returned from this method.This operation is eager and will cause the returned element to be realized. - Specified by:
- getByNamein interface- NamedDomainObjectCollection<ArtifactRepository>
- Parameters:
- name- The object name
- configureAction- The action to use to configure the object.
- Returns:
- The object with the given name, after the configure action has been applied to it. Never returns null.
- Throws:
- UnknownRepositoryException
 
- 
getAtLocates an object by name, failing if there is no such object. This method is identical toNamedDomainObjectCollection.getByName(String). You can call this method in your build script by using the groovy[]operator.This operation is eager and will cause the returned element to be realized. - Specified by:
- getAtin interface- NamedDomainObjectCollection<ArtifactRepository>
- Parameters:
- name- The object name
- Returns:
- The object with the given name. Never returns null.
- Throws:
- UnknownRepositoryException
 
 
-