Changeset 468
- Timestamp:
- 04/06/07 01:07:32 (2 years ago)
- Files:
-
- trunk/src/main/php/org/apache/maven/artifact/metadata/mvnResolutionGroup.php (modified) (4 diffs)
- trunk/src/test/php/org/apache/maven/artifact/metadata (added)
- trunk/src/test/php/org/apache/maven/artifact/metadata/mvnResolutionGroupTestCase.php (added)
- trunk/src/test/php/org/apache/maven/mvnTestSuite.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/org/apache/maven/artifact/metadata/mvnResolutionGroup.php
r459 r468 38 38 * a list of artifacts 39 39 * 40 * @var array 40 * @var array<mvnArtifact> 41 41 */ 42 42 private $artifacts = array(); 43 43 /** 44 * a list of repositories that contain the resolution44 * a list of repositories that contain the artifact 45 45 * 46 * @var array 46 * @var array<mvnArtifactRepository 47 47 */ 48 48 private $resolutionRepositories = array(); … … 57 57 * constructor 58 58 * 59 * @param mvnArtifact $pomArtifact60 * @param array $artifacts61 * @param array $resolutionRepositorie59 * @param mvnArtifact $pomArtifact artifact for the pom 60 * @param array<mvnArtifact> $artifacts list of artifacts 61 * @param array<mvnArtifactRepository> $resolutionRepositorie list of repositories that contain the artifact 62 62 */ 63 63 public function __construct(mvnArtifact $pomArtifact, array $artifacts, array $resolutionRepositories) … … 81 81 * returns the list of artifacts 82 82 * 83 * @return array 83 * @return array<mvnArtifact> 84 84 */ 85 85 public function getArtifacts() … … 89 89 90 90 /** 91 * returns the resolution repositories91 * returns the list of repositories that contain the artifact 92 92 * 93 * @return array 93 * @return array<mvnArtifactRepository 94 94 */ 95 95 public function getResolutionRepositories() trunk/src/test/php/org/apache/maven/mvnTestSuite.php
r465 r468 26 26 $this->addTestFile($dir . '/artifact/handler/mvnDefaultArtifactHandlerTestCase.php'); 27 27 28 // handler 29 $this->addTestFile($dir . '/artifact/metadata/mvnResolutionGroupTestCase.php'); 30 28 31 // repository 29 32 $this->addTestFile($dir . '/artifact/repository/mvnArtifactRepositoryPolicyTestCase.php');
