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

svn commit: r375456 - in /maven/components/trunk/maven-core-it: README.txt it0093/ it0093/a-one/ it0093/a-one/pom.xml it0093/b-one/ it0093/b-one/pom.xml it0093/expected-results.txt it0093/goals.txt it0093/pom.xml

Author: jvanzyl
Date: Mon Feb  6 19:36:52 2006
New Revision: 375456

URL: http://svn.apache.org/viewcvs?rev=375456&view=rev
Log:
o updating README.txt and adding another IT for the duplicate IDs


Added:
    maven/components/trunk/maven-core-it/it0093/
    maven/components/trunk/maven-core-it/it0093/a-one/
    maven/components/trunk/maven-core-it/it0093/a-one/pom.xml   (with props)
    maven/components/trunk/maven-core-it/it0093/b-one/
    maven/components/trunk/maven-core-it/it0093/b-one/pom.xml   (with props)
    maven/components/trunk/maven-core-it/it0093/expected-results.txt   (with props)
    maven/components/trunk/maven-core-it/it0093/goals.txt   (with props)
    maven/components/trunk/maven-core-it/it0093/pom.xml   (with props)
Modified:
    maven/components/trunk/maven-core-it/README.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=375456&r1=375455&r2=375456&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/README.txt (original)
+++ maven/components/trunk/maven-core-it/README.txt Mon Feb  6 19:36:52 2006
@@ -244,9 +244,18 @@
 
 it0089: Test that Checkstyle PackageNamesLoader.loadModuleFactory(..) method will complete as-is with
         the context classloader available to the plugin.
+       
+it0090: Test that ensures that envars are interpolated correctly into plugin
+        configurations.
+
+it0091: Test that currently demonstrates that properties are not correctly
+        interpolated into other areas in the POM. This may strictly be a boolean
+        problem: I captured the problem as it was reported.
 
 it0092: Test that legacy repositories with legacy snapshots download correctly.
 
+it0093: A test that ensures that an exception is thrown when two artifacts
+with the same id are present in the reactor.
 -------------------------------------------------------------------------------
 
 - generated sources

Added: maven/components/trunk/maven-core-it/it0093/a-one/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0093/a-one/pom.xml?rev=375456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0093/a-one/pom.xml (added)
+++ maven/components/trunk/maven-core-it/it0093/a-one/pom.xml Mon Feb  6 19:36:52 2006
@@ -0,0 +1,10 @@
+<model>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven</groupId>
+    <artifactId>parent-it0092</artifactId>
+    <version>1.0</version>
+  </parent>
+  <groupId>it0093</groupId>
+  <artifactId>one</artifactId>
+</model>

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

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

Added: maven/components/trunk/maven-core-it/it0093/b-one/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0093/b-one/pom.xml?rev=375456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0093/b-one/pom.xml (added)
+++ maven/components/trunk/maven-core-it/it0093/b-one/pom.xml Mon Feb  6 19:36:52 2006
@@ -0,0 +1,10 @@
+<model>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven</groupId>
+    <artifactId>parent-it0092</artifactId>
+    <version>1.0</version>
+  </parent>
+  <groupId>it0093</groupId>
+  <artifactId>one</artifactId>
+</model>

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

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

Added: maven/components/trunk/maven-core-it/it0093/expected-results.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0093/expected-results.txt?rev=375456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0093/expected-results.txt (added)
+++ maven/components/trunk/maven-core-it/it0093/expected-results.txt Mon Feb  6 19:36:52 2006
@@ -0,0 +1,3 @@
+target/touch.txt
+!subproject/target/touch.txt
+subproject2/target/touch.txt

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

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

Added: maven/components/trunk/maven-core-it/it0093/goals.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0093/goals.txt?rev=375456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0093/goals.txt (added)
+++ maven/components/trunk/maven-core-it/it0093/goals.txt Mon Feb  6 19:36:52 2006
@@ -0,0 +1 @@
+core-it:touch

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

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

Added: maven/components/trunk/maven-core-it/it0093/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0093/pom.xml?rev=375456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0093/pom.xml (added)
+++ maven/components/trunk/maven-core-it/it0093/pom.xml Mon Feb  6 19:36:52 2006
@@ -0,0 +1,11 @@
+<model>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven</groupId>
+  <artifactId>parent-it0093</artifactId>
+  <packaging>pom</packaging>
+  <version>1.0</version>
+  <modules>
+    <module>a-one</module>
+    <module>b-one</module>
+  </modules>
+</model>

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

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