You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2006/02/07 04:16:16 UTC

svn commit: r375454 - in /maven/components/trunk/maven-core-it: ./ it0092/ it0092/repository/ it0092/repository/org.apache.maven/ it0092/repository/org.apache.maven/jars/

Author: brett
Date: Mon Feb  6 19:16:14 2006
New Revision: 375454

URL: http://svn.apache.org/viewcvs?rev=375454&view=rev
Log:
[MNG-1908] verify that snapshots can be downloaded even without metadata or timestamping

Added:
    maven/components/trunk/maven-core-it/it0092/   (with props)
    maven/components/trunk/maven-core-it/it0092/expected-results.txt   (with props)
    maven/components/trunk/maven-core-it/it0092/goals.txt   (with props)
    maven/components/trunk/maven-core-it/it0092/pom.xml   (with props)
    maven/components/trunk/maven-core-it/it0092/prebuild-hook.txt   (with props)
    maven/components/trunk/maven-core-it/it0092/repository/
    maven/components/trunk/maven-core-it/it0092/repository/org.apache.maven/
    maven/components/trunk/maven-core-it/it0092/repository/org.apache.maven/jars/
    maven/components/trunk/maven-core-it/it0092/repository/org.apache.maven/jars/maven-core-it-support-1.0-SNAPSHOT.jar
Modified:
    maven/components/trunk/maven-core-it/README.txt
    maven/components/trunk/maven-core-it/integration-tests.txt

Modified: maven/components/trunk/maven-core-it/README.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/README.txt?rev=375454&r1=375453&r2=375454&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/README.txt (original)
+++ maven/components/trunk/maven-core-it/README.txt Mon Feb  6 19:16:14 2006
@@ -244,6 +244,9 @@
 
 it0089: Test that Checkstyle PackageNamesLoader.loadModuleFactory(..) method will complete as-is with
         the context classloader available to the plugin.
+
+it0092: Test that legacy repositories with legacy snapshots download correctly.
+
 -------------------------------------------------------------------------------
 
 - generated sources

Modified: maven/components/trunk/maven-core-it/integration-tests.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/integration-tests.txt?rev=375454&r1=375453&r2=375454&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/integration-tests.txt (original)
+++ maven/components/trunk/maven-core-it/integration-tests.txt Mon Feb  6 19:16:14 2006
@@ -1,3 +1,4 @@
+it0092
 it0089
 it0088
 it0087

Propchange: maven/components/trunk/maven-core-it/it0092/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Feb  6 19:16:14 2006
@@ -0,0 +1,2 @@
+log.txt
+target

Added: maven/components/trunk/maven-core-it/it0092/expected-results.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0092/expected-results.txt?rev=375454&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0092/expected-results.txt (added)
+++ maven/components/trunk/maven-core-it/it0092/expected-results.txt Mon Feb  6 19:16:14 2006
@@ -0,0 +1 @@
+${artifact:org.apache.maven:maven-core-it-support:1.0-SNAPSHOT:jar}

Propchange: maven/components/trunk/maven-core-it/it0092/expected-results.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0092/expected-results.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0092/goals.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0092/goals.txt?rev=375454&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0092/goals.txt (added)
+++ maven/components/trunk/maven-core-it/it0092/goals.txt Mon Feb  6 19:16:14 2006
@@ -0,0 +1 @@
+compile

Propchange: maven/components/trunk/maven-core-it/it0092/goals.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0092/goals.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0092/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0092/pom.xml?rev=375454&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0092/pom.xml (added)
+++ maven/components/trunk/maven-core-it/it0092/pom.xml Mon Feb  6 19:16:14 2006
@@ -0,0 +1,20 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven.it</groupId>
+  <artifactId>maven-core-it0092</artifactId>
+  <version>1.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core-it-support</artifactId>
+      <version>1.0-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+  <repositories>
+    <repository>
+      <id>it0092</id>
+      <url>file://localhost/${basedir}/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+</project>

Propchange: maven/components/trunk/maven-core-it/it0092/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0092/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0092/prebuild-hook.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0092/prebuild-hook.txt?rev=375454&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0092/prebuild-hook.txt (added)
+++ maven/components/trunk/maven-core-it/it0092/prebuild-hook.txt Mon Feb  6 19:16:14 2006
@@ -0,0 +1 @@
+rm ${artifact:org.apache.maven:maven-core-it-support:1.0-SNAPSHOT:jar}

Propchange: maven/components/trunk/maven-core-it/it0092/prebuild-hook.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0092/prebuild-hook.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0092/repository/org.apache.maven/jars/maven-core-it-support-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0092/repository/org.apache.maven/jars/maven-core-it-support-1.0-SNAPSHOT.jar?rev=375454&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0092/repository/org.apache.maven/jars/maven-core-it-support-1.0-SNAPSHOT.jar (added)
+++ maven/components/trunk/maven-core-it/it0092/repository/org.apache.maven/jars/maven-core-it-support-1.0-SNAPSHOT.jar Mon Feb  6 19:16:14 2006
@@ -0,0 +1 @@
+THIS IS NOT A JAR