mirror of https://github.com/apache/maven.git
added @since info on methods and classes used by mirror injection
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1335785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
efbbaf668e
commit
691e4af5cf
|
@ -97,7 +97,15 @@ public interface ArtifactRepository
|
||||||
void setProxy( Proxy proxy );
|
void setProxy( Proxy proxy );
|
||||||
Proxy getProxy();
|
Proxy getProxy();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 3.0.3
|
||||||
|
* @return the repositories mirrored by the actual one
|
||||||
|
*/
|
||||||
List<ArtifactRepository> getMirroredRepositories();
|
List<ArtifactRepository> getMirroredRepositories();
|
||||||
|
/**
|
||||||
|
* @since 3.0.3
|
||||||
|
* @param mirroredRepositories the repositories that the actual one mirrors
|
||||||
|
*/
|
||||||
void setMirroredRepositories( List<ArtifactRepository> mirroredRepositories );
|
void setMirroredRepositories( List<ArtifactRepository> mirroredRepositories );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,7 @@ import org.sonatype.aether.RepositorySystemSession;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Jason van Zyl
|
* @author Jason van Zyl
|
||||||
|
* @since 3.0-alpha
|
||||||
*/
|
*/
|
||||||
public interface RepositorySystem
|
public interface RepositorySystem
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue