You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@excalibur.apache.org by cz...@apache.org on 2008/03/28 19:05:51 UTC

svn commit: r642322 - in /excalibur/trunk/components/sourceresolve: api/pom.xml avalon/pom.xml impl/pom.xml jnet/pom.xml

Author: cziegeler
Date: Fri Mar 28 11:05:45 2008
New Revision: 642322

URL: http://svn.apache.org/viewvc?rev=642322&view=rev
Log:
Use new parent pom.

Modified:
    excalibur/trunk/components/sourceresolve/api/pom.xml
    excalibur/trunk/components/sourceresolve/avalon/pom.xml
    excalibur/trunk/components/sourceresolve/impl/pom.xml
    excalibur/trunk/components/sourceresolve/jnet/pom.xml

Modified: excalibur/trunk/components/sourceresolve/api/pom.xml
URL: http://svn.apache.org/viewvc/excalibur/trunk/components/sourceresolve/api/pom.xml?rev=642322&r1=642321&r2=642322&view=diff
==============================================================================
--- excalibur/trunk/components/sourceresolve/api/pom.xml (original)
+++ excalibur/trunk/components/sourceresolve/api/pom.xml Fri Mar 28 11:05:45 2008
@@ -18,8 +18,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.excalibur</groupId>
-    <artifactId>excalibur</artifactId>
-    <version>3</version>
+    <artifactId>excalibur-parent</artifactId>
+    <version>3.0.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <name>Excalibur Sourceresolve</name>
@@ -42,11 +42,6 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
-  <build>
-    <!--  We have to redefine this as our parent pom defines src/java as the source dir! -->
-    <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
-    <testSourceDirectory>${basedir}/src/main/test</testSourceDirectory>
-  </build>
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/excalibur/trunk/components/sourceresolve/api</connection>
     <url>http://svn.apache.org/viewcvs.cgi/excalibur/trunk/components/sourceresolve/api</url>

Modified: excalibur/trunk/components/sourceresolve/avalon/pom.xml
URL: http://svn.apache.org/viewvc/excalibur/trunk/components/sourceresolve/avalon/pom.xml?rev=642322&r1=642321&r2=642322&view=diff
==============================================================================
--- excalibur/trunk/components/sourceresolve/avalon/pom.xml (original)
+++ excalibur/trunk/components/sourceresolve/avalon/pom.xml Fri Mar 28 11:05:45 2008
@@ -18,8 +18,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.excalibur</groupId>
-    <artifactId>excalibur</artifactId>
-    <version>3</version>
+    <artifactId>excalibur-parent</artifactId>
+    <version>3.0.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <name>Excalibur Sourceresolve</name>
@@ -68,11 +68,6 @@
       <version>3.8.2</version>
     </dependency>
   </dependencies>
-  <build>
-    <!--  We have to redefine this as our parent pom defines src/java as the source dir! -->
-    <sourceDirectory>src/main/java</sourceDirectory>
-    <testSourceDirectory>src/main/test</testSourceDirectory>
-  </build>
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/excalibur/trunk/components/sourceresolve/avalon</connection>
     <url>http://svn.apache.org/viewcvs.cgi/excalibur/trunk/components/sourceresolve/avalon</url>

Modified: excalibur/trunk/components/sourceresolve/impl/pom.xml
URL: http://svn.apache.org/viewvc/excalibur/trunk/components/sourceresolve/impl/pom.xml?rev=642322&r1=642321&r2=642322&view=diff
==============================================================================
--- excalibur/trunk/components/sourceresolve/impl/pom.xml (original)
+++ excalibur/trunk/components/sourceresolve/impl/pom.xml Fri Mar 28 11:05:45 2008
@@ -18,8 +18,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.excalibur</groupId>
-    <artifactId>excalibur</artifactId>
-    <version>3</version>
+    <artifactId>excalibur-parent</artifactId>
+    <version>3.0.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <name>Excalibur Sourceresolve Implementation</name>
@@ -78,10 +78,6 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
-  <build>
-    <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
-    <testSourceDirectory>${basedir}/src/main/test</testSourceDirectory>
-  </build>
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/excalibur/trunk/components/sourceresolve/impl</connection>
     <url>http://svn.apache.org/viewcvs.cgi/excalibur/trunk/components/sourceresolve/impl</url>

Modified: excalibur/trunk/components/sourceresolve/jnet/pom.xml
URL: http://svn.apache.org/viewvc/excalibur/trunk/components/sourceresolve/jnet/pom.xml?rev=642322&r1=642321&r2=642322&view=diff
==============================================================================
--- excalibur/trunk/components/sourceresolve/jnet/pom.xml (original)
+++ excalibur/trunk/components/sourceresolve/jnet/pom.xml Fri Mar 28 11:05:45 2008
@@ -18,8 +18,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.excalibur</groupId>
-    <artifactId>excalibur</artifactId>
-    <version>3</version>
+    <artifactId>excalibur-parent</artifactId>
+    <version>3.0.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <name>Excalibur Sourceresolve</name>
@@ -38,11 +38,6 @@
       <scope>provided</scope>
     </dependency>
   </dependencies>
-  <build>
-    <!--  We have to redefine this as our parent pom defines src/java as the source dir! -->
-    <sourceDirectory>src/main/java</sourceDirectory>
-    <testSourceDirectory>src/main/test</testSourceDirectory>
-  </build>
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/excalibur/trunk/components/sourceresolve/jnet</connection>
     <url>http://svn.apache.org/viewcvs.cgi/excalibur/trunk/components/sourceresolve/jnet</url>



---------------------------------------------------------------------
To unsubscribe, e-mail: scm-unsubscribe@excalibur.apache.org
For additional commands, e-mail: scm-help@excalibur.apache.org