]> source.dussan.org Git - archiva.git/commitdiff
[MRM-1329] Start to revise Javadoc of APIs
authorBrett Porter <brett@apache.org>
Tue, 16 Mar 2010 00:21:13 +0000 (00:21 +0000)
committerBrett Porter <brett@apache.org>
Tue, 16 Mar 2010 00:21:13 +0000 (00:21 +0000)
- additionally, add projectVersion to the ArtifactMetadata so that the full coordinate is available.

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@923520 13f79535-47bb-0310-9956-ffa450edef68

20 files changed:
archiva-modules/archiva-web/archiva-rss/src/test/java/org/apache/archiva/rss/processor/NewArtifactsRssFeedProcessorTest.java
archiva-modules/archiva-web/archiva-rss/src/test/java/org/apache/archiva/rss/processor/NewVersionsOfArtifactRssFeedProcessorTest.java
archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/archiva/metadata/repository/memory/TestMetadataRepository.java
archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/SearchActionTest.java
archiva-modules/archiva-web/archiva-webapp/src/test/java/org/apache/maven/archiva/web/action/ShowArtifactActionTest.java
archiva-modules/archiva-web/archiva-xmlrpc/archiva-xmlrpc-services/src/test/java/org/apache/archiva/web/xmlrpc/services/AdministrationServiceImplTest.java
archiva-modules/archiva-web/archiva-xmlrpc/archiva-xmlrpc-services/src/test/java/org/apache/archiva/web/xmlrpc/services/SearchServiceImplTest.java
archiva-modules/metadata/metadata-model/src/main/java/org/apache/archiva/metadata/model/ArtifactMetadata.java
archiva-modules/metadata/metadata-model/src/main/java/org/apache/archiva/metadata/model/CiManagement.java
archiva-modules/metadata/metadata-model/src/main/java/org/apache/archiva/metadata/model/Dependency.java
archiva-modules/metadata/metadata-model/src/main/java/org/apache/archiva/metadata/model/FacetedMetadata.java
archiva-modules/metadata/metadata-model/src/main/java/org/apache/archiva/metadata/model/IssueManagement.java
archiva-modules/metadata/metadata-model/src/main/java/org/apache/archiva/metadata/model/License.java
archiva-modules/metadata/metadata-model/src/main/java/org/apache/archiva/metadata/model/MailingList.java
archiva-modules/plugins/maven2-repository/src/main/java/org/apache/archiva/metadata/repository/storage/maven2/Maven2RepositoryPathTranslator.java
archiva-modules/plugins/metadata-repository-file/src/main/java/org/apache/archiva/metadata/repository/file/FileMetadataRepository.java
archiva-modules/plugins/metadata-repository-file/src/test/java/org/apache/archiva/metadata/repository/file/FileMetadataRepositoryTest.java
archiva-modules/plugins/problem-reports/src/test/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumerTest.java
archiva-modules/plugins/repository-statistics/src/test/java/org/apache/archiva/metadata/repository/stats/RepositoryStatisticsManagerTest.java
archiva-modules/pom.xml

index 5c9670f6aef5443baf29e6e47af4039637965deb..924715ef0c06837b92918d94790dd8a5ca7cbc19 100644 (file)
@@ -19,14 +19,6 @@ package org.apache.archiva.rss.processor;
  * under the License.
  */
 
-import java.util.ArrayList;
-import java.util.Calendar;
-import java.util.Date;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.TimeZone;
-
 import com.sun.syndication.feed.synd.SyndEntry;
 import com.sun.syndication.feed.synd.SyndFeed;
 import org.apache.archiva.metadata.model.ArtifactMetadata;
@@ -35,6 +27,14 @@ import org.apache.archiva.rss.RssFeedGenerator;
 import org.codehaus.plexus.spring.PlexusInSpringTestCase;
 import org.easymock.MockControl;
 
+import java.util.ArrayList;
+import java.util.Calendar;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.TimeZone;
+
 public class NewArtifactsRssFeedProcessorTest
     extends PlexusInSpringTestCase
 {
@@ -111,6 +111,7 @@ public class NewArtifactsRssFeedProcessorTest
         artifact.setRepositoryId( TEST_REPO );
         artifact.setWhenGathered( whenGathered );
         artifact.setProject( artifactId );
+        artifact.setProjectVersion( version );
         artifact.setVersion( version );
         return artifact;
     }
index b1cdf7cf840ab531c9c7c82e4efbada89ce7ab91..043293db65973843392bc4ae39a85fd7ebc24dce 100644 (file)
@@ -19,13 +19,6 @@ package org.apache.archiva.rss.processor;
  * under the License.
  */
 
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.Date;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
 import com.sun.syndication.feed.synd.SyndEntry;
 import com.sun.syndication.feed.synd.SyndFeed;
 import org.apache.archiva.metadata.model.ArtifactMetadata;
@@ -34,6 +27,13 @@ import org.apache.archiva.rss.RssFeedGenerator;
 import org.codehaus.plexus.spring.PlexusInSpringTestCase;
 import org.easymock.MockControl;
 
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
 public class NewVersionsOfArtifactRssFeedProcessorTest
     extends PlexusInSpringTestCase
 {
@@ -124,6 +124,7 @@ public class NewVersionsOfArtifactRssFeedProcessorTest
         ArtifactMetadata artifact = new ArtifactMetadata();
         artifact.setNamespace( GROUP_ID );
         artifact.setProject( ARTIFACT_ID );
+        artifact.setProjectVersion( version );
         artifact.setVersion( version );
         artifact.setRepositoryId( TEST_REPO );
         artifact.setId( ARTIFACT_ID + "-" + version + ".jar" );
index 7f030a06cb504c36d1167bfbc2db5f5a4f73167e..cd7ef6a0ddd5c8ac1108ac468562e354adf3f43e 100644 (file)
@@ -19,12 +19,6 @@ package org.apache.archiva.metadata.repository.memory;
  * under the License.
  */
 
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.Date;
-import java.util.List;
-
 import org.apache.archiva.metadata.model.ArtifactMetadata;
 import org.apache.archiva.metadata.model.MetadataFacet;
 import org.apache.archiva.metadata.model.ProjectMetadata;
@@ -32,6 +26,12 @@ import org.apache.archiva.metadata.model.ProjectVersionMetadata;
 import org.apache.archiva.metadata.model.ProjectVersionReference;
 import org.apache.archiva.metadata.repository.MetadataRepository;
 
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.Date;
+import java.util.List;
+
 public class TestMetadataRepository
     implements MetadataRepository
 {
@@ -62,6 +62,7 @@ public class TestMetadataRepository
         ArtifactMetadata artifact = new ArtifactMetadata();
         artifact.setFileLastModified( System.currentTimeMillis() );
         artifact.setNamespace( TEST_NAMESPACE );
+        artifact.setProjectVersion( projectVersion );
         artifact.setVersion( projectVersion );
         artifact.setId( projectId + "-" + projectVersion + ".jar" );
         artifact.setProject( projectId );
index 6cfd42d5f38e8c4f9d664c3c93ae7d8cdd6932d8..8063c92bdf1d22cb8adebafb9ead0308e3c2bb79 100644 (file)
@@ -19,11 +19,6 @@ package org.apache.maven.archiva.web.action;
  * under the License.
  */
 
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.List;
-
 import com.opensymphony.xwork2.Action;
 import org.apache.archiva.indexer.search.RepositorySearch;
 import org.apache.archiva.indexer.search.SearchFields;
@@ -38,6 +33,11 @@ import org.apache.maven.archiva.security.UserRepositories;
 import org.codehaus.plexus.spring.PlexusInSpringTestCase;
 import org.easymock.MockControl;
 
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+
 /**
  *
  */
@@ -504,6 +504,7 @@ public class SearchActionTest
         ArtifactMetadata metadata = new ArtifactMetadata();
         metadata.setNamespace( "org.apache.archiva" );
         metadata.setProject( project );
+        metadata.setProjectVersion( version );
         metadata.setVersion( version );
         metadata.setRepositoryId( TEST_REPO );
         metadata.setId( project + "-" + version + ".jar" );
index af1e1891fffd49b0d8bd016a53f93334553a4280..b3128337bca1f43650d405eca7f28a6c90b50972 100644 (file)
@@ -27,6 +27,7 @@ import org.apache.archiva.metadata.model.ProjectVersionMetadata;
 import org.apache.archiva.metadata.model.ProjectVersionReference;
 import org.apache.archiva.metadata.repository.memory.TestMetadataResolver;
 import org.apache.archiva.metadata.repository.storage.maven2.MavenArtifactFacet;
+import org.apache.maven.archiva.common.utils.VersionUtil;
 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
 import org.apache.maven.archiva.repository.RepositoryContentFactory;
@@ -402,6 +403,7 @@ public class ShowArtifactActionTest
         metadata.setNamespace( TEST_GROUP_ID );
         metadata.setRepositoryId( TEST_REPO );
         metadata.setSize( TEST_SIZE );
+        metadata.setProjectVersion( VersionUtil.getBaseVersion( version ) );
         metadata.setVersion( version );
 
         MavenArtifactFacet facet = new MavenArtifactFacet();
index d0a3e937741fc3e4beefccee433a6cc1dcd84bc5..ffdb1048db2ff43e64a1792aaecb6b4957108206 100644 (file)
@@ -719,6 +719,7 @@ public class AdministrationServiceImplTest
         artifact.setId( "archiva-test-1.0.jar" );
         artifact.setProject( "archiva-test" );
         artifact.setVersion( "1.0" );
+        artifact.setProjectVersion( "1.0" );
         artifact.setNamespace( "org.apache.archiva" );
         artifact.setRepositoryId( "internal" );
         artifacts.add( artifact );
index 79194af452ee6d49d3e5e9b1f0f0d9d3672ac6b8..30be81bbf9dd862d860541d5a96415f0bef0ec0b 100644 (file)
@@ -543,6 +543,7 @@ public class SearchServiceImplTest
         String version = "1.0";
         ArtifactMetadata artifactMetadata = new ArtifactMetadata();
         artifactMetadata.setVersion( version );
+        artifactMetadata.setProjectVersion( version );
         artifactMetadata.setId( ARCHIVA_TEST_ARTIFACT_ID + "-" + version + ".jar" );
         artifactMetadata.setProject( ARCHIVA_TEST_ARTIFACT_ID );
         artifactMetadata.setNamespace( ARCHIVA_TEST_GROUP_ID );
index b5b7307cda9f0941422ef172a3a2c58d0a692341..6d408726d0245e8cf595633edcae14c6e36f4eab 100644 (file)
@@ -21,28 +21,80 @@ package org.apache.archiva.metadata.model;
 
 import java.util.Date;
 
+/**
+ * Metadata stored in the content repository for a particular artifact. Information that is shared between different
+ * artifacts of a given project version can be found in the
+ * {@link org.apache.archiva.metadata.model.ProjectVersionMetadata} class. The metadata is faceted to store information
+ * about particular types of artifacts, for example Maven 2.x artifact specific information.
+ * For more information, see the
+ * <a href="{@docRoot}/../metadata-content-model.html" target="_top">Metadata Content Model</a>.
+ */
 public class ArtifactMetadata
     extends FacetedMetadata
 {
+    /**
+     * The artifact ID uniquely identifies an artifact within a given namespace, project and project version. For
+     * example, <tt>archiva-1.4-20100201.345612-2.jar</tt>
+     */
     private String id;
-    
-    private long size;
 
+    /**
+     * The repository that the artifact is stored in within the content repository.
+     */
+    private String repositoryId;
+
+    /**
+     * The namespace of the project within the repository.
+     *
+     * @see org.apache.archiva.metadata.model.ProjectMetadata#namespace
+     */
+    private String namespace;
+
+    /**
+     * The identifier of the project within the repository and namespace.
+     *
+     * @see org.apache.archiva.metadata.model.ProjectMetadata#id
+     */
+    private String project;
+
+    /**
+     * The version of the project. This may be more generalised than @{link #version}.
+     *
+     * @see org.apache.archiva.metadata.model.ProjectVersionMetadata#id
+     */
+    private String projectVersion;
+
+    /**
+     * The artifact version, if different from the project version. Note that the metadata does not do any calculation
+     * of this based on the project version - the calling code must be sure to set and check it appropriately if
+     * <tt>null</tt>.
+     */
     private String version;
 
+    /**
+     * The last modified date of the artifact file, if known.
+     */
     private Date fileLastModified;
 
-    private Date whenGathered;
+    /**
+     * The file size of the artifact, if known.
+     */
+    private long size;
 
+    /**
+     * The MD5 checksum of the artifact, if calculated.
+     */
     private String md5;
 
+    /**
+     * The SHA-1 checksum of the artifact, if calculated.
+     */
     private String sha1;
 
-    private String namespace;
-
-    private String project;
-
-    private String repositoryId;
+    /**
+     * When the artifact was found in the repository storage and added to the metadata content repository.
+     */
+    private Date whenGathered;
 
     public String getId()
     {
@@ -74,6 +126,16 @@ public class ArtifactMetadata
         this.version = version;
     }
 
+    public String getProjectVersion()
+    {
+        return projectVersion;
+    }
+
+    public void setProjectVersion( String projectVersion )
+    {
+        this.projectVersion = projectVersion;
+    }
+
     public void setFileLastModified( long fileLastModified )
     {
         this.fileLastModified = new Date( fileLastModified );
@@ -163,7 +225,9 @@ public class ArtifactMetadata
         {
             return false;
         }
-        if ( !fileLastModified.equals( that.fileLastModified ) )
+        if ( fileLastModified != null
+            ? !fileLastModified.equals( that.fileLastModified )
+            : that.fileLastModified != null )
         {
             return false;
         }
@@ -183,7 +247,11 @@ public class ArtifactMetadata
         {
             return false;
         }
-        if ( repositoryId != null ? !repositoryId.equals( that.repositoryId ) : that.repositoryId != null )
+        if ( projectVersion != null ? !projectVersion.equals( that.projectVersion ) : that.projectVersion != null )
+        {
+            return false;
+        }
+        if ( !repositoryId.equals( that.repositoryId ) )
         {
             return false;
         }
@@ -191,11 +259,11 @@ public class ArtifactMetadata
         {
             return false;
         }
-        if ( !version.equals( that.version ) )
+        if ( version != null ? !version.equals( that.version ) : that.version != null )
         {
             return false;
         }
-        if ( !whenGathered.equals( that.whenGathered ) )
+        if ( whenGathered != null ? !whenGathered.equals( that.whenGathered ) : that.whenGathered != null )
         {
             return false;
         }
@@ -209,6 +277,6 @@ public class ArtifactMetadata
         return "ArtifactMetadata{" + "id='" + id + '\'' + ", size=" + size + ", version='" + version + '\'' +
             ", fileLastModified=" + fileLastModified + ", whenGathered=" + whenGathered + ", md5='" + md5 + '\'' +
             ", sha1='" + sha1 + '\'' + ", namespace='" + namespace + '\'' + ", project='" + project + '\'' +
-            ", repositoryId='" + repositoryId + '\'' + '}';
+            ", projectVersion='" + projectVersion + '\'' + ", repositoryId='" + repositoryId + '\'' + '}';
     }
 }
index bb0bc7c1b64e1382c1bf86871b64879b5e58f1d8..bbee4efcf0b814fc7599a9087226f0467265b57b 100644 (file)
@@ -19,10 +19,21 @@ package org.apache.archiva.metadata.model;
  * under the License.
  */
 
+/**
+ * Information about the CI system used by the project.
+ *
+ * @todo considering moving this to a facet - avoid referring to it externally
+ */
 public class CiManagement
 {
+    /**
+     * A simple identifier for the type of CI server used, eg <tt>continuum</tt>, <tt>bamboo</tt>, <tt>hudson</tt>, etc.
+     */
     private String system;
 
+    /**
+     * The base URL of the CI system.
+     */
     private String url;
 
     public String getUrl()
index 034bce463c9e2b8b69fc0be70470431f1da8c3e7..a2658769ddb0a0e1affaf51f4d03d338a21645aa 100644 (file)
@@ -20,24 +20,51 @@ package org.apache.archiva.metadata.model;
  */
 
 /**
- * TODO: review what is appropriate for the base here - rest should be in a maven dependency facet
+ * Information about a dependency that this project has on another project or artifact.
+ *
+ * @todo will be reviewing what is appropriate for the base here - rest should be in a maven dependency facet - avoid details on it externally
  */
 public class Dependency
 {
+    /**
+     * The Maven classifier of the dependency.
+     */
     private String classifier;
 
+    /**
+     * Whether the dependency is optional or required.
+     */
     private boolean optional;
 
+    /**
+     * The Maven scope of the dependency - <tt>compile</tt> (default), <tt>runtime</tt>, etc.
+     */
     private String scope;
 
+    /**
+     * The system path of the file of the dependency artifact to use.
+     */
     private String systemPath;
 
+    /**
+     * The Maven type of the dependency.
+     */
     private String type;
 
+    /**
+     * The Maven artifact ID of the dependency.
+     */
     private String artifactId;
 
+    /**
+     * The Maven group ID of the dependency.
+     */
     private String groupId;
 
+    /**
+     * The version of the artifact to depend on. If this refers to a project version then the repository implementation
+     * may choose the most appropriate artifact version to use.
+     */
     private String version;
 
     public void setClassifier( String classifier )
index a3df5e339c20c623f04668530da2535f74721862..3024512f3fa6cc85a9ba9c33d6945dd7db190243 100644 (file)
@@ -23,30 +23,52 @@ import java.util.Collection;
 import java.util.HashMap;
 import java.util.Map;
 
-public class FacetedMetadata
+/**
+ * Base class for metadata that is contains facets for storing extensions by various plugins.
+ */
+public abstract class FacetedMetadata
 {
+    /**
+     * The facets to store, keyed by the {@linkplain MetadataFacet#getFacetId() Facet ID} of the metadata.
+     */
     private Map<String, MetadataFacet> facets = new HashMap<String, MetadataFacet>();
 
+    /**
+     * Add a new facet to the metadata. If it already exists, it will be replaced.
+     *
+     * @param metadataFacet the facet to add
+     */
     public void addFacet( MetadataFacet metadataFacet )
     {
         this.facets.put( metadataFacet.getFacetId(), metadataFacet );
     }
 
+    /**
+     * Get a particular facet of metadata.
+     *
+     * @param facetId the facet ID
+     * @return the facet of the metadata.
+     */
     public MetadataFacet getFacet( String facetId )
     {
         return this.facets.get( facetId );
     }
 
-    public Map<String, MetadataFacet> getFacets()
-    {
-        return facets;
-    }
-
+    /**
+     * Get all the facets available on this metadata.
+     *
+     * @return the facets of the metadata
+     */
     public Collection<MetadataFacet> getFacetList()
     {
         return this.facets.values();
     }
 
+    /**
+     * Get all the keys of the facets available on this metadata.
+     *
+     * @return the collection of facet IDs.
+     */
     public Collection<String> getFacetIds()
     {
         return this.facets.keySet();
index 22f7290bef7021354b339fedeeacf6ef08fae0b2..83eecda0d398fbec92cfd60c30f30a51cad692be 100644 (file)
@@ -19,10 +19,21 @@ package org.apache.archiva.metadata.model;
  * under the License.
  */
 
+/**
+ * Information about the issue management system used by the project.
+ *
+ * @todo considering moving this to a facet - avoid referring to it externally
+ */
 public class IssueManagement
 {
+    /**
+     * A simple identifier for the type of issue management server used, eg <tt>jira</tt>, <tt>bugzilla</tt>, etc.
+     */
     private String system;
 
+    /**
+     * The base URL of the issue management system.
+     */
     private String url;
 
     public String getUrl()
index 2f5a141f8bf66884f6279ea37e8576772b131fa3..b1ce93b779108f21758464c445ab48b93c2efeea 100644 (file)
@@ -19,10 +19,19 @@ package org.apache.archiva.metadata.model;
  * under the License.
  */
 
+/**
+ * A description of a particular license used by a project.
+ */
 public class License
 {
+    /**
+     * The name of the license.
+     */
     private String name;
 
+    /**
+     * The URL of the license text.
+     */
     private String url;
 
     public License( String name, String url )
index a9530b79dd1b750349ec64d53b2642af0ad6975b..129358d4ab692220da81606111a7215b977fc489 100644 (file)
@@ -21,18 +21,41 @@ import java.util.List;
  * under the License.
  */
 
+/**
+ * Information about the available mailing lists for communicating with the project.
+ *
+ * @todo considering moving this to a facet - avoid referring to it externally
+ */
 public class MailingList
 {
+    /**
+     * The primary archive URL for this mailing list.
+     */
     private String mainArchiveUrl;
 
+    /**
+     * A list of other URLs to archives of the mailing list.
+     */
     private List<String> otherArchives;
 
+    /**
+     * The name of the mailing list, eg. <i>Archiva Developers List</i>.
+     */
     private String name;
 
+    /**
+     * The email address to post a new message to the mailing list, if applicable.
+     */
     private String postAddress;
 
+    /**
+     * The email address to send a message to to subscribe to the mailing list, if applicable.
+     */
     private String subscribeAddress;
 
+    /**
+     * The email address to send a message to to unsubscribe from the mailing list, if applicable.
+     */
     private String unsubscribeAddress;
 
     public void setMainArchiveUrl( String mainArchiveUrl )
index 440457360f7b3ad50df85379a5dc57e7ad07d8aa..7688ed689807e4475b086e1569b718f30ce1475b 100644 (file)
@@ -260,6 +260,7 @@ public class Maven2RepositoryPathTranslator
         metadata.setNamespace( namespace );
         metadata.setProject( projectId );
         metadata.setRepositoryId( repoId );
+        metadata.setProjectVersion( projectVersion );
         metadata.setVersion( version );
 
         facet.setClassifier( classifier );
index e2dfbc662db4aad6244a664c6e165bdffe7aab85..b391173cfdd496659814c9457f56b30bdb4de3f6 100644 (file)
@@ -437,6 +437,7 @@ public class FileMetadataRepository
                     artifact.setRepositoryId( repoId );
                     artifact.setNamespace( namespace );
                     artifact.setProject( projectId );
+                    artifact.setProjectVersion( projectVersion );
                     artifact.setVersion( projectVersion );
                     artifact.setId( id );
                     artifacts.put( id, artifact );
index 2e41424d27d5995527de27df375327e16aab18de..4288c5a955a9c56bd3b20289af65e473d9090d76 100644 (file)
@@ -608,6 +608,7 @@ public class FileMetadataRepositoryTest
         artifact.setRepositoryId( TEST_REPO_ID );
         artifact.setFileLastModified( System.currentTimeMillis() );
         artifact.setVersion( TEST_PROJECT_VERSION );
+        artifact.setProjectVersion( TEST_PROJECT_VERSION );
         artifact.setMd5( TEST_MD5 );
         artifact.setSha1( TEST_SHA1 );
         return artifact;
index 1a870c96528a7f942848bd0f3cbd859ff0aa9838..e4fd2c62e79bb05f766d98fe70acab3fd0a05908 100644 (file)
@@ -208,6 +208,7 @@ public class DuplicateArtifactsConsumerTest
         artifact.setId( TEST_PROJECT + "-" + version + ".jar" );
         artifact.setNamespace( TEST_NAMESPACE );
         artifact.setProject( TEST_PROJECT );
+        artifact.setProjectVersion( version );
         artifact.setVersion( version );
         artifact.setRepositoryId( TEST_REPO );
         return artifact;
index 2ca912e415d77544fc30eb5437f6cbd26f856777..5603c5d388071e7d2d20ca32bac80aa649060bc8 100644 (file)
@@ -437,6 +437,7 @@ public class RepositoryStatisticsManagerTest
         metadata.setId( projectId + "-" + projectVersion + "." + type );
         metadata.setProject( projectId );
         metadata.setSize( 12345L );
+        metadata.setProjectVersion( projectVersion );
         metadata.setVersion( projectVersion );
         metadata.setNamespace( namespace );
 
index 1ab9386fce29ab5786c8be23c69f2ea3ecda0a27..0da6f5c90f80d4932df57170bd722637122f0c65 100644 (file)
             <link>http://jakarta.apache.org/regexp/apidocs/</link>
             <link>http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/</link>
           </links>
+          <linksource>true</linksource>
+          <show>private</show>
           <tags>
             <tag>
               <name>plexus.component</name>