A RepositorySet allows for using one refid for a collection of repositories.
This is particularly useful for builds which use several different
repositories as a group, and references to them are throughout the build
files.
The order in which the repositories are listed is maintained, and is
important in terms of the search-order for each library entry.
Nested Elements
|
repository
Adds a repository to the
set, and can be used as a "refid" to any other repository type.
|
repositoryset
Adds an embedded repositoryset to this set. This
allows for logical grouping of repositories.
|
|
|
Examples
|
|
|
|
|
<library-repositoryset id="3rdparty.repository">
<repository refid="nightly-builds.repository" />
<repository refid="local.repository" />
<repository refid="maven.repository" />
</library-repositoryset>
|
|
|
|
|
A single refid for the build's repository scheme, containing several
different repositories (each may be a different type). They will be
searched in the given order for entry resolution.
|
|