diff options
author | Maria Odea B. Ching <oching@apache.org> | 2011-06-16 13:12:22 +0000 |
---|---|---|
committer | Maria Odea B. Ching <oching@apache.org> | 2011-06-16 13:12:22 +0000 |
commit | 969e7fb37fad69e4599b79feb28774cc2b58ff14 (patch) | |
tree | 7ba2f2b042b2c5d945a51985cf06cb97719a45eb /archiva-modules/archiva-base | |
parent | ea6a0644afbdcbe89d743c90733aaacfb482dc5a (diff) | |
download | archiva-969e7fb37fad69e4599b79feb28774cc2b58ff14.tar.gz archiva-969e7fb37fad69e4599b79feb28774cc2b58ff14.zip |
[MRM-1411] project information is missing if a POM could not be read correctly
o for snapshot artifacts, get the timestamp and build number first from the metadata in the remote repo before proxying the actual parent pom
o added unit tests, removed checksums and other test files that are not necessarily used
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1136424 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-base')
-rw-r--r-- | archiva-modules/archiva-base/archiva-configuration/pom.xml | 5 | ||||
-rw-r--r-- | archiva-modules/archiva-base/archiva-repository-scanner/pom.xml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/archiva-modules/archiva-base/archiva-configuration/pom.xml b/archiva-modules/archiva-base/archiva-configuration/pom.xml index dac057cdf..56f50e2a8 100644 --- a/archiva-modules/archiva-base/archiva-configuration/pom.xml +++ b/archiva-modules/archiva-base/archiva-configuration/pom.xml @@ -92,6 +92,11 @@ <artifactId>archiva-policies</artifactId> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <scope>test</scope> diff --git a/archiva-modules/archiva-base/archiva-repository-scanner/pom.xml b/archiva-modules/archiva-base/archiva-repository-scanner/pom.xml index 4a873d9f7..05ee9c993 100644 --- a/archiva-modules/archiva-base/archiva-repository-scanner/pom.xml +++ b/archiva-modules/archiva-base/archiva-repository-scanner/pom.xml @@ -45,5 +45,10 @@ <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> |