diff --git a/maven-model/maven.mdo b/maven-model/maven.mdo index eedaefd244..2b1cc66835 100644 --- a/maven-model/maven.mdo +++ b/maven-model/maven.mdo @@ -186,6 +186,14 @@ String This naming is inconsistent and distriubtion should occur from a repository structure. + + repositories + 4.0.0 + The lists of the remote repositories + java.util.List + new ArrayList() + + mailingLists 3.0.0+ @@ -1065,5 +1073,60 @@ + + + Repository + 4.0.0 + + Repository contains the information needed + for establishing connections with remote repoistory + + + + id + 4.0.0 + + A unique identifier for a repository. + + String + + + name + 4.0.0 + + Human readable name of the repository + + String + + + url + 4.0.0 + + The url of of the repository + + String + + + + + 4.0.0 + + public boolean equals( Object obj ) + { + Repository other = ( Repository ) obj; + + boolean retValue = false; + + if ( id != null ) + { + retValue = id.equals( other.id ); + } + + return retValue; + } + + + +