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

svn commit: r394384 - in /maven/maven-1/core/trunk/src/test/touchstone-build: ./ src/reactor-build/entities-in-project.xml/ src/reactor-build/entities-in-project.xml/common/

Author: aheritier
Date: Sat Apr 15 15:15:42 2006
New Revision: 394384

URL: http://svn.apache.org/viewcvs?rev=394384&view=rev
Log:
Test case for MAVEN-1755 : A project which uses xml entities in the POM.

Added:
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/NOTES.txt   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/build.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/contributors.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/dependencies.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/developers.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/licenses.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/mailingLists.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/organization.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/reports.xml   (with props)
    maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/project.xml   (with props)
Modified:
    maven/maven-1/core/trunk/src/test/touchstone-build/maven.xml

Modified: maven/maven-1/core/trunk/src/test/touchstone-build/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/maven.xml?rev=394384&r1=394383&r2=394384&view=diff
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/maven.xml (original)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/maven.xml Sat Apr 15 15:15:42 2006
@@ -224,10 +224,14 @@
     
     <!-- TO FIX -->
     <!-- <attainGoal name="testOverlappedCalls" /> -->
-    
+
+    <!-- TO FIX -->
+    <!-- <attainGoal name="test-entities-in-project" /> -->
+
     <!-- TODO - this is still broken (as in RC1)
     <attainGoal name="test-reactor-maven-username" />
     -->
+
     <echo>Touchstone complete</echo>
   </goal>
 
@@ -882,6 +886,14 @@
     <maven:maven
       descriptor="${basedir}/src/reactor-build/overlappedCalls/project.xml"
       goals="testOverlappedCalls"
+      ignoreFailures="false"
+    />
+  </goal>
+  
+  <goal name="test-entities-in-project">
+    <maven:maven
+      descriptor="${basedir}/src/reactor-build/entities-in-project.xml/project.xml"
+      goals="jar"
       ignoreFailures="false"
     />
   </goal>

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/NOTES.txt
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/NOTES.txt?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/NOTES.txt (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/NOTES.txt Sat Apr 15 15:15:42 2006
@@ -0,0 +1 @@
+MAVEN-1755 : A project which uses xml entities in the POM.

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/NOTES.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/build.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/build.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/build.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/build.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,48 @@
+  <build>
+    <defaultGoal>jar:jar</defaultGoal>
+    <nagEmailAddress>notifications@maven.apache.org</nagEmailAddress>
+    <sourceDirectory>src/java</sourceDirectory>
+    <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
+    <unitTest>
+      <includes>
+        <include>**/*Test.java</include>
+      </includes>
+      <!-- TODO - fix or remove -->
+      <excludes>
+        <exclude>**/JAXPTest.java</exclude>
+      </excludes>
+    </unitTest>
+    <resources>
+      <resource>
+        <directory>${basedir}</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>NOTICE.txt</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/conf</directory>
+        <includes>
+          <include>*.xsd</include>
+          <include>*.dtd</include>
+          <include>*.mod</include>
+          <include>driver.jelly</include>
+          <include>LICENCE.txt</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/conf</directory>
+        <includes>
+          <include>*.properties</include>
+        </includes>
+        <filtering>true</filtering>
+      </resource>
+      <resource>
+        <directory>src/messages</directory>
+        <targetPath>org/apache/maven/messages</targetPath>
+        <includes>
+          <include>messages*.properties</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/contributors.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/contributors.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/contributors.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/contributors.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,65 @@
+  <contributors>
+    <contributor>
+      <name>Alexei Barantsev</name>
+      <email>barancev@ispras.ru</email>
+    </contributor>
+    <contributor>
+      <name>Martin van dem Bemt</name>
+      <email>mvdb@mvdb.com</email>
+    </contributor>
+    <contributor>
+      <name>Nathan Coast</name>
+      <email>nathan.coast@blueyonder.co.uk</email>
+    </contributor>
+    <contributor>
+      <name>Martin Cooper</name>
+      <email>martin.cooper@tumbleweed.com</email>
+    </contributor>
+    <contributor>
+      <name>Aslak Hellesøy</name>
+      <email>aslak@thoughtworks.net</email>
+    </contributor>
+    <contributor>
+      <name>John Casey</name>
+      <email>jdcasey@commonjava.org</email>
+    </contributor>
+    <contributor>
+      <name>James CE Johnson</name>
+      <email>jcej@tragus.org</email>
+    </contributor>
+    <contributor>
+      <name>Mark Langley</name>
+      <email>mlangley@casebank.com</email>
+    </contributor>
+    <contributor>
+      <name>Brian Leonard</name>
+      <email>brian@brainslug.com</email>
+    </contributor>
+    <contributor>
+      <name>Michael McCallum</name>
+      <email>gholam@apache.org</email>
+    </contributor>
+    <contributor>
+      <name>Markus M. May</name>
+      <email>mmay@javafreedom.org</email>
+    </contributor>
+    <contributor>
+      <name>Tom Palmer</name>
+      <email>tomp@uk.uu.net</email>
+    </contributor>
+    <contributor>
+      <name>Martin Skopp</name>
+      <email>skopp@riege.de</email>
+      <organization>Riege Software International</organization>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Kuisong Tong</name>
+      <email>Kuisong.Tong@vtradex.com</email>
+    </contributor>
+    <contributor>
+      <name>Andy Jefferson</name>
+      <email>andy@ajsoft.net</email>
+      <organization>AJSoft Limited</organization>
+    </contributor>
+  </contributors>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/contributors.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/dependencies.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/dependencies.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/dependencies.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/dependencies.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,183 @@
+  <!-- Need to mark these as compile-time/run-time -->
+  <dependencies>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+      <version>1.4</version>
+      <url>http://www.dom4j.org/</url>
+    </dependency>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.6.5</version>
+      <url>http://ant.apache.org/</url>
+    </dependency>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant-junit</artifactId>
+      <version>1.6.5</version>
+      <url>http://ant.apache.org/</url>
+    </dependency>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant-launcher</artifactId>
+      <version>1.6.5</version>
+      <url>http://ant.apache.org/</url>
+    </dependency>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant-trax</artifactId>
+      <version>1.6.5</version>
+      <url>http://ant.apache.org/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-jelly</groupId>
+      <artifactId>commons-jelly</artifactId>
+      <version>1.0</version>
+      <url>http://jakarta.apache.org/commons/jelly/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-jelly</groupId>
+      <artifactId>commons-jelly-tags-ant</artifactId>
+      <version>1.1</version>
+      <url>http://jakarta.apache.org/commons/jelly/libs/ant/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-jelly</groupId>
+      <artifactId>commons-jelly-tags-define</artifactId>
+      <version>1.0</version>
+      <url>http://jakarta.apache.org/commons/jelly/libs/define/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-jelly</groupId>
+      <artifactId>commons-jelly-tags-util</artifactId>
+      <version>1.1.1</version>
+      <url>http://jakarta.apache.org/commons/jelly/libs/util/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-jelly</groupId>
+      <artifactId>commons-jelly-tags-xml</artifactId>
+      <version>1.1</version>
+      <url>http://jakarta.apache.org/commons/jelly/libs/xml/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-jexl</groupId>
+      <artifactId>commons-jexl</artifactId>
+      <version>1.0</version>
+      <url>http://jakarta.apache.org/commons/jexl/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <url>http://jakarta.apache.org/commons/logging/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-httpclient</groupId>
+      <artifactId>commons-httpclient</artifactId>
+      <version>3.0</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <version>1.2</version>
+      <url>http://jakarta.apache.org/commons/codec/</url>
+      <properties>
+        <comment>This library is needed by httpclient.</comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+      <version>1.0-beta-2</version>
+      <url>http://jakarta.apache.org/commons/cli/</url>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>1.0</version>
+      <url>http://jakarta.apache.org/commons/io/</url>
+    </dependency>
+    <dependency>
+      <groupId>forehead</groupId>
+      <artifactId>forehead</artifactId>
+      <version>1.0-beta-5</version>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.12</version>
+      <url>http://logging.apache.org/log4j/docs/</url>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xmlParserAPIs</artifactId>
+      <version>2.6.2</version>
+      <url>http://xerces.apache.org/xerces2-j/</url>
+      <properties>
+        <endorsed>true</endorsed>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.6.2</version>
+      <url>http://xerces.apache.org/xerces2-j/</url>
+      <properties>
+        <endorsed>true</endorsed>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.0.3</version>
+      <properties>
+        <scope>runtime</scope>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>maven</groupId>
+      <artifactId>maven-model</artifactId>
+      <version>3.0.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-provider-api</artifactId>
+      <version>1.0-alpha-3</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-http</artifactId>
+      <version>1.0-alpha-3</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-file</artifactId>
+      <version>1.0-alpha-4</version>
+    </dependency>
+    <!-- Runtime dependencies -->
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.6.1</version>
+      <properties>
+        <scope>runtime</scope>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.0</version>
+      <properties>
+        <scope>runtime</scope>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.0</version>
+      <properties>
+        <scope>runtime</scope>
+      </properties>
+    </dependency>
+  </dependencies>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/dependencies.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/developers.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/developers.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/developers.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/developers.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,250 @@
+  <developers>
+    <developer>
+      <name>Juancarlo Anez</name>
+      <id>juanco</id>
+      <email>juanco@apache.org</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Stephane Bailliez</name>
+      <id>sbailliez</id>
+      <email>sbailliez@apache.org</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Jeff Brekke</name>
+      <id>brekke</id>
+      <email>brekke@apache.org</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Tom Copeland</name>
+      <id>tcopeland</id>
+      <email>tcopeland@apache.org</email>
+      <organization>InfoEther</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Eric Dobbs</name>
+      <id>dobbs</id>
+      <email>eric@dobbse.net</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>dIon Gillard</name>
+      <id>dion</id>
+      <email>dion@multitask.com.au</email>
+      <organization>Multitask Consulting</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+10</timezone>
+    </developer>
+    <developer>
+      <name>Arnaud Heritier</name>
+      <id>aheritier</id>
+      <email>aheritier@apache.org</email>
+      <organization>Octo Technology</organization>
+      <roles>
+        <role>PMC Member</role>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Pete Kazmier</name>
+      <id>kaz</id>
+      <email>pete-apache-dev@kazmier.com</email>
+      <organization/>
+      <roles>
+        <role>Documentation</role>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Peter Lynch</name>
+      <id>plynch</id>
+      <email>plynch@apache.org</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Michal Maczka</name>
+      <id>michal</id>
+      <email>michal.maczka@dimatics.com</email>
+      <organization>Dimatics</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Glenn McAllister</name>
+      <id>glennm</id>
+      <email>glenn@somanetworks.com</email>
+      <organization>SOMA Networks, Inc.</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Bob McWhirter</name>
+      <id>werken</id>
+      <email>bob@werken.com</email>
+      <organization>The Werken Company</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Geir Magnusson Jr.</name>
+      <id>geirm</id>
+      <email>geirm@optonline.net</email>
+      <organization>Independent (DVSL Maven)</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Vincent Massol</name>
+      <id>vmassol</id>
+      <email>vmassol@pivolis.com</email>
+      <organization>Pivolis</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Stéphane Mor</name>
+      <id>smor</id>
+      <email>stephanemor@yahoo.fr</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Kasper Nielsen</name>
+      <id>knielsen</id>
+      <email>apache@kav.dk</email>
+      <organization/>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Brett Porter</name>
+      <id>brett</id>
+      <email>brett@apache.org</email>
+      <organization>f2 network</organization>
+      <roles>
+        <role>PMC Member</role>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+10</timezone>
+    </developer>
+    <developer>
+      <name>Daniel Rall</name>
+      <id>dlr</id>
+      <email>dlr@finemaltcoding.com</email>
+      <organization>CollabNet, Inc.</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Kurt Schrader</name>
+      <id>kschrader</id>
+      <email>kschrader@karmalab.org</email>
+      <organization>University of Michigan</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <url>http://karmalab.org/~kschrader/</url>
+    </developer>
+    <developer>
+      <name>James Strachan</name>
+      <id>jstrachan</id>
+      <email>james_strachan@yahoo.co.uk</email>
+      <organization>Spiritsoft</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>James Taylor</name>
+      <id>jtaylor</id>
+      <email>james@jamestaylor.org</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Emmanuel Venisse</name>
+      <id>evenisse</id>
+      <email>emmanuel@venisse.net</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+      <id>jvanzyl</id>
+      <email>jason@zenplex.com</email>
+      <organization>Zenplex</organization>
+      <roles>
+        <role>Architect</role>
+        <role>Release Manager</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Ben Walding</name>
+      <id>bwalding</id>
+      <email>ben@walding.com</email>
+      <organization>Walding Consulting Services</organization>
+      <roles>
+        <role>Java Developer</role>
+        <role>PMC Member</role>
+      </roles>
+      <!--<url>http://www.walding.com</url>-->
+      <timezone>+10</timezone>
+    </developer>
+    <developer>
+      <name>Lukas Theussl</name>
+      <id>ltheussl</id>
+      <email>ltheussl@apache.org</email>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Stephane Nicoll</name>
+      <id>snicoll</id>
+      <email>snicoll@apache.org</email>
+      <organization/>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+  </developers>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/developers.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/licenses.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/licenses.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/licenses.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/licenses.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,7 @@
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://cvs.apache.org/viewcvs.cgi/*checkout*/maven/LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/licenses.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/mailingLists.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/mailingLists.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/mailingLists.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/mailingLists.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,45 @@
+  <mailingLists>
+    <mailingList>
+      <name>Maven User List</name>
+      <subscribe>users-subscribe@maven.apache.org</subscribe>
+      <unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
+      <post>users@maven.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/maven-users/</archive>
+      <otherArchives>
+        <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
+        <otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
+      </otherArchives>
+    </mailingList>
+    <mailingList>
+      <name>Maven Developer List</name>
+      <subscribe>dev-subscribe@maven.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@maven.apache.org</unsubscribe>
+      <post>dev@maven.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/maven-dev/</archive>
+      <otherArchives>
+        <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
+        <otherArchive>http://www.nabble.com/Maven---Dev-f179.html</otherArchive>
+      </otherArchives>
+    </mailingList>
+    <mailingList>
+      <name>Maven Commits List</name>
+      <subscribe>commits-subscribe@maven.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@maven.apache.org</unsubscribe>
+      <post>commits@maven.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/maven-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Maven Announce List</name>
+      <subscribe>announce-subscribe@maven.apache.org</subscribe>
+      <unsubscribe>announce-unsubscribe@maven.apache.org</unsubscribe>
+      <post>announce@maven.apache.org</post>
+      <archive></archive>
+    </mailingList>
+    <mailingList>
+      <name>Apache Announce List</name>
+      <subscribe>announce-subscribe@apache.org</subscribe>
+      <unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
+      <post>announce@apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
+    </mailingList>
+  </mailingLists>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/mailingLists.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/organization.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/organization.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/organization.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/organization.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,5 @@
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+    <logo>/images/apache-maven-project-2.png</logo>
+  </organization>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/organization.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/reports.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/reports.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/reports.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/reports.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,30 @@
+  <reports>
+    <!--
+     |
+     | These should all be completely self contained. You should be able
+     | to generate each of them individually without needing the final
+     | xdoc transformation.
+     |
+     | Each report plugin with it's POM and plugin.jelly logic should
+     | contain everything needed to produced the report.
+     |
+    -->
+    <report>maven-jdepend-plugin</report>
+    <report>maven-changelog-plugin</report>
+    <report>maven-file-activity-plugin</report>
+    <report>maven-developer-activity-plugin</report>
+    <report>maven-javadoc-plugin</report>
+    <report>maven-jdiff-plugin</report>
+    <report>maven-jellydoc-plugin</report>
+    <report>maven-jxr-plugin</report>
+    <report>maven-junit-report-plugin</report>
+    <report>maven-license-plugin</report>
+    <report>maven-linkcheck-plugin</report>
+    <report>maven-pdf-plugin</report>
+    <report>maven-tasklist-plugin</report>
+    <report>maven-jira-plugin</report>
+    <report>maven-pmd-plugin</report>
+    <report>maven-simian-plugin</report>
+    <report>maven-checkstyle-plugin</report>
+    <report>maven-faq-plugin</report>
+  </reports>

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/common/reports.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/project.xml?rev=394384&view=auto
==============================================================================
--- maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/project.xml (added)
+++ maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/project.xml Sat Apr 15 15:15:42 2006
@@ -0,0 +1,166 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- edited with XMLSpy v2005 rel. 3 U (http://www.altova.com) by  () -->
+<!-- 
+/*
+ * Copyright 2001-2006 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+ -->
+<!DOCTYPE project [
+  <!ENTITY build SYSTEM "file:./common/build.xml">
+  <!ENTITY contributors SYSTEM "file:./common/contributors.xml">
+  <!ENTITY dependencies SYSTEM "file:./common/dependencies.xml">
+  <!ENTITY developers SYSTEM "file:./common/developers.xml">
+  <!ENTITY licenses SYSTEM "file:./common/licenses.xml">
+  <!ENTITY mailingLists SYSTEM "file:./common/mailingLists.xml">
+  <!ENTITY organization SYSTEM "file:./common/organization.xml">
+  <!ENTITY reports SYSTEM "file:./common/reports.xml">
+]>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
+  <pomVersion>3</pomVersion>
+  <id>maven</id>
+  <groupId>maven</groupId>
+  <artifactId>maven</artifactId>
+  <name>Maven</name>
+  <currentVersion>1.1-beta-3-SNAPSHOT</currentVersion>
+&organization;
+  <inceptionYear>2001</inceptionYear>
+  <package>org.apache.maven</package>
+  <logo>/images/maven-logo-2.gif</logo>
+  <!-- Gump integration -->
+  <gumpRepositoryId>maven</gumpRepositoryId>
+  <description>Maven is a project management and project comprehension tool. Maven is based on the concept of a project object model: builds, documentation creation, site publication, and distribution publication are all controlled from the project object model. Maven also provides tools to create source metrics, change logs based directly on source repository, and source cross-references. You can build a Maven installation from this source tree by running ant -f build-bootstrap.xml</description>
+  <shortDescription>Java Project Management Tools</shortDescription>
+  <url>http://maven.apache.org/maven-1.x/</url>
+  <issueTrackingUrl>http://jira.codehaus.org/browse/MAVEN</issueTrackingUrl>
+  <siteAddress>people.apache.org</siteAddress>
+  <siteDirectory>/www/maven.apache.org/maven-1.x/</siteDirectory>
+  <distributionSite>people.apache.org</distributionSite>
+  <distributionDirectory>/www/www.apache.org/dist/java-repository/</distributionDirectory>
+  <repository>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/maven-1/core/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/maven-1/core/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/</url>
+  </repository>
+  <versions>
+    <version>
+      <id>b1</id>
+      <name>1.0-b1</name>
+      <tag>MAVEN_1_0_B1</tag>
+    </version>
+    <version>
+      <id>b2</id>
+      <name>1.0-b2</name>
+      <tag>MAVEN_1_0_B2</tag>
+    </version>
+    <version>
+      <id>b3</id>
+      <name>1.0-b3</name>
+      <tag>MAVEN_1_0_B3</tag>
+    </version>
+    <version>
+      <id>b4</id>
+      <name>1.0-b4</name>
+      <tag>MAVEN_1_0_B4</tag>
+    </version>
+    <version>
+      <id>b5</id>
+      <name>1.0-beta-5</name>
+      <tag>MAVEN_1_0_B5</tag>
+    </version>
+    <version>
+      <id>b6</id>
+      <name>1.0-beta-6</name>
+      <tag>MAVEN_1_0_B6</tag>
+    </version>
+    <version>
+      <id>b7</id>
+      <name>1.0-beta-7</name>
+      <tag>MAVEN_1_0_B7</tag>
+    </version>
+    <version>
+      <id>b8</id>
+      <name>1.0-beta-8</name>
+      <tag>MAVEN_1_0_B8</tag>
+    </version>
+    <version>
+      <id>b9</id>
+      <name>1.0-beta-9</name>
+      <tag>MAVEN_1_0_B9</tag>
+    </version>
+    <version>
+      <id>b10</id>
+      <name>1.0-beta-10</name>
+      <tag>MAVEN_1_0_B10</tag>
+    </version>
+    <version>
+      <id>rc1</id>
+      <name>1.0-rc1</name>
+      <tag>MAVEN_1_0_RC1</tag>
+    </version>
+    <version>
+      <id>1.0-rc2</id>
+      <name>1.0-rc2</name>
+      <tag>MAVEN_1_0_RC2</tag>
+    </version>
+    <version>
+      <id>1.0-rc3</id>
+      <name>1.0-rc3</name>
+      <tag>MAVEN_1_0_RC3</tag>
+    </version>
+    <version>
+      <id>1.0-rc4</id>
+      <name>1.0-rc4</name>
+      <tag>MAVEN_1_0_RC4</tag>
+    </version>
+    <version>
+      <id>1.0</id>
+      <name>1.0</name>
+      <tag>MAVEN_1_0</tag>
+    </version>
+    <version>
+      <id>1.0.1</id>
+      <name>1.0.1</name>
+      <tag>MAVEN_1_0_1</tag>
+    </version>
+    <version>
+      <id>1.0.2</id>
+      <name>1.0.2</name>
+      <tag>MAVEN_1_0_2</tag>
+    </version>
+    <version>
+      <id>1.1-beta-1</id>
+      <name>1.1-beta-1</name>
+      <tag>maven-1.1-beta-1</tag>
+    </version>
+    <version>
+      <id>1.1-beta-2</id>
+      <name>1.1-beta-2</name>
+      <tag>maven-1.1-beta-2</tag>
+    </version>
+  </versions>
+&mailingLists;
+&developers;
+&contributors;
+&licenses;
+&dependencies;
+&build;
+&reports;
+  <!-- For maven internal testing -->
+  <properties>
+    <testName>testValue</testName>
+    <pomProperty>${pomProperty}</pomProperty>
+  </properties>
+</project>
+

Propchange: maven/maven-1/core/trunk/src/test/touchstone-build/src/reactor-build/entities-in-project.xml/project.xml
------------------------------------------------------------------------------
    svn:eol-style = native