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 2006/01/23 14:08:18 UTC

svn commit: r371536 - in /excalibur/trunk: ./ components/ components/datasource/ components/monitor/ components/pool/ components/pool/api/ components/pool/impl/ components/pool/instrumented/ components/sourceresolve/ components/store/ components/thread...

Author: cziegeler
Date: Mon Jan 23 05:08:03 2006
New Revision: 371536

URL: http://svn.apache.org/viewcvs?rev=371536&view=rev
Log:
Clean up poms

Modified:
    excalibur/trunk/components/datasource/pom.xml
    excalibur/trunk/components/monitor/pom.xml
    excalibur/trunk/components/pom.xml
    excalibur/trunk/components/pool/api/pom.xml
    excalibur/trunk/components/pool/impl/pom.xml
    excalibur/trunk/components/pool/instrumented/pom.xml
    excalibur/trunk/components/pool/pom.xml
    excalibur/trunk/components/sourceresolve/pom.xml
    excalibur/trunk/components/store/pom.xml
    excalibur/trunk/components/thread/api/pom.xml
    excalibur/trunk/components/thread/impl/pom.xml
    excalibur/trunk/components/thread/instrumented/pom.xml
    excalibur/trunk/components/thread/pom.xml
    excalibur/trunk/components/xmlutil/pom.xml
    excalibur/trunk/pom.xml

Modified: excalibur/trunk/components/datasource/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/datasource/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/datasource/pom.xml (original)
+++ excalibur/trunk/components/datasource/pom.xml Mon Jan 23 05:08:03 2006
@@ -22,21 +22,16 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.datasource</groupId>
     <artifactId>excalibur-datasource</artifactId>
-    <version>2.2-SNAPSHOT</version>
     <name>Excalibur Datasource</name>
     <inceptionYear>2003</inceptionYear>
     <description>
-        <!--
-            Avalon Excalibur's DataSource package allows you to manage pooled connections in one of two ways. You can have
-            the package handle it for you, or you can use a J2EE server's DataSource management. It provides the same kind
-            of access regardless of which method you choose, since they are obtained through Avalon's Component Manager
-            infrastructure.
-            
-            The DataSource package requires that you load the necessary driver classes at init time, but it will take care
-            of all necessary issues from there.
-        -->
+        Avalon Excalibur's DataSource package allows you to manage pooled connections in one of two ways. You can have
+        the package handle it for you, or you can use a J2EE server's DataSource management. It provides the same kind
+        of access regardless of which method you choose, since they are obtained through Avalon's Component Manager
+        infrastructure.            
+        The DataSource package requires that you load the necessary driver classes at init time, but it will take care
+        of all necessary issues from there.
     </description>
     <dependencies>
         <dependency>
@@ -68,14 +63,14 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.apache.excalibur.components.pool</groupId>
+            <groupId>org.apache.excalibur</groupId>
             <artifactId>excalibur-pool-api</artifactId>
-            <version>2.1</version>
+            <version>2.2-SNAPSHOT</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.excalibur.components.pool</groupId>
+            <groupId>org.apache.excalibur</groupId>
             <artifactId>excalibur-pool-impl</artifactId>
-            <version>2.1</version>
+            <version>2.2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
@@ -91,9 +86,9 @@
             <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>org.apache.excalibur.components.pool</groupId>
+            <groupId>org.apache.excalibur</groupId>
             <artifactId>excalibur-pool-instrumented</artifactId>
-            <version>2.1</version>
+            <version>2.2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
     </dependencies>

Modified: excalibur/trunk/components/monitor/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/monitor/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/monitor/pom.xml (original)
+++ excalibur/trunk/components/monitor/pom.xml Mon Jan 23 05:08:03 2006
@@ -22,9 +22,7 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.monitor</groupId>
     <artifactId>excalibur-monitor</artifactId>
-    <version>2.2-SNAPSHOPT</version>
     <name>Excalibur Monitor</name>
     <inceptionYear>1997</inceptionYear>
     <description>

Modified: excalibur/trunk/components/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/pom.xml (original)
+++ excalibur/trunk/components/pom.xml Mon Jan 23 05:08:03 2006
@@ -15,7 +15,6 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
-
 <project>
     <parent>
         <groupId>org.apache.excalibur</groupId>
@@ -23,9 +22,8 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components</groupId>
     <artifactId>excalibur-components</artifactId>
-    <version>1.0</version>
+    <version>2.2-SNAPSHOT</version>
     <name>Excalibur Components</name>
     <packaging>pom</packaging>
     <modules>

Modified: excalibur/trunk/components/pool/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/api/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/pool/api/pom.xml (original)
+++ excalibur/trunk/components/pool/api/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <name>Excalibur Pool API</name>
-    <groupId>org.apache.excalibur.components.pool</groupId>
     <artifactId>excalibur-pool-api</artifactId>
-    <version>2.1</version>
     <inceptionYear>1997</inceptionYear>
     <description>Excalibur Pool API</description>
     <dependencies>

Modified: excalibur/trunk/components/pool/impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/impl/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/pool/impl/pom.xml (original)
+++ excalibur/trunk/components/pool/impl/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <name>Excalibur Pool Implementation</name>
-    <groupId>org.apache.excalibur.components.pool</groupId>
     <artifactId>excalibur-pool-impl</artifactId>
-    <version>2.1</version>
     <inceptionYear>1997</inceptionYear>
     <dependencies>
         <dependency>

Modified: excalibur/trunk/components/pool/instrumented/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/instrumented/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/pool/instrumented/pom.xml (original)
+++ excalibur/trunk/components/pool/instrumented/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <name>Excalibur Pool Instrumented Implementation</name>
-    <groupId>org.apache.excalibur.components.pool</groupId>
     <artifactId>excalibur-pool-instrumented</artifactId>
-    <version>2.1</version>
     <inceptionYear>1997</inceptionYear>
     <description>Excalibur Pool Instrumented Implementation</description>
     <dependencies>

Modified: excalibur/trunk/components/pool/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/pool/pom.xml (original)
+++ excalibur/trunk/components/pool/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.pool</groupId>
     <artifactId>excalibur-pool</artifactId>
-    <version>1.0</version>
     <name>Excalibur Pool</name>
     <packaging>pom</packaging>
     <modules>

Modified: excalibur/trunk/components/sourceresolve/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/sourceresolve/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/sourceresolve/pom.xml (original)
+++ excalibur/trunk/components/sourceresolve/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <name>Excalibur Sourceresolve</name>
-    <groupId>org.apache.excalibur.components.sourceresolve</groupId>
     <artifactId>excalibur-sourceresolve</artifactId>
-    <version>2.2-SNAPSHOT</version>
     <inceptionYear>1997</inceptionYear>
     <description>
         A very common problem is resolving a source, which means finding a source using a URI. The source resolver of

Modified: excalibur/trunk/components/store/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/store/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/store/pom.xml (original)
+++ excalibur/trunk/components/store/pom.xml Mon Jan 23 05:08:03 2006
@@ -22,11 +22,9 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.store</groupId>
     <artifactId>excalibur-store</artifactId>
     <name>Excalibur Store</name>
     <inceptionYear>1997</inceptionYear>
-    <version>2.2-SNAPSHOT</version>
     <description>
         The Store Package provides a way to store named objects without taking care about where and how they are stored.
         You can choose between different implementations that store the data e.g. in memory or on the file system etc.

Modified: excalibur/trunk/components/thread/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/api/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/thread/api/pom.xml (original)
+++ excalibur/trunk/components/thread/api/pom.xml Mon Jan 23 05:08:03 2006
@@ -15,7 +15,6 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
-
 <project>
     <parent>
         <groupId>org.apache.excalibur</groupId>
@@ -23,9 +22,7 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.thread</groupId>
     <artifactId>excalibur-thread-api</artifactId>
-    <version>2.1</version>
     <name>Excalibur Threads API</name>
     <inceptionYear>2001</inceptionYear>
     <description>Excalibur Threads API</description>

Modified: excalibur/trunk/components/thread/impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/impl/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/thread/impl/pom.xml (original)
+++ excalibur/trunk/components/thread/impl/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.thread</groupId>
     <artifactId>excalibur-thread-impl</artifactId>
-    <version>2.1</version>
     <name>Excalibur Threads Implementation</name>
     <inceptionYear>2001</inceptionYear>
     <description>Excalibur Threads Implementation</description>

Modified: excalibur/trunk/components/thread/instrumented/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/instrumented/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/thread/instrumented/pom.xml (original)
+++ excalibur/trunk/components/thread/instrumented/pom.xml Mon Jan 23 05:08:03 2006
@@ -15,7 +15,6 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
-
 <project>
     <parent>
         <groupId>org.apache.excalibur</groupId>
@@ -23,9 +22,7 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.thread</groupId>
     <artifactId>excalibur-thread-instrumented</artifactId>
-    <version>2.1</version>
     <name>Excalibur Threads Instrumented Implementation</name>
     <inceptionYear>2001</inceptionYear>
     <description>Excalibur Threads Instrumented Implementation</description>

Modified: excalibur/trunk/components/thread/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/thread/pom.xml (original)
+++ excalibur/trunk/components/thread/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
         <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.excalibur.components.thread</groupId>
     <artifactId>excalibur-thread</artifactId>
-    <version>1.0</version>
     <name>Excalibur Thread</name>
     <packaging>pom</packaging>
     <modules>

Modified: excalibur/trunk/components/xmlutil/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/xmlutil/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/components/xmlutil/pom.xml (original)
+++ excalibur/trunk/components/xmlutil/pom.xml Mon Jan 23 05:08:03 2006
@@ -23,9 +23,7 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <name>Excalibur XML Utilities</name>
-    <groupId>org.apache.excalibur.components.xmlutil</groupId>
     <artifactId>excalibur-xmlutil</artifactId>
-    <version>2.1</version>
     <inceptionYear>1997</inceptionYear>
     <description>
         Excalibur's XML Utilities provide simplified wrappers for XML parsers, transformers and XPath evaluators. It
@@ -57,14 +55,14 @@
             <version>4.3</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.excalibur.components.sourceresolve</groupId>
+            <groupId>org.apache.excalibur</groupId>
             <artifactId>excalibur-sourceresolve</artifactId>
-            <version>2.1</version>
+            <version>2.2-SNAPSHOT</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.excalibur.components.store</groupId>
+            <groupId>org.apache.excalibur</groupId>
             <artifactId>excalibur-store</artifactId>
-            <version>2.1</version>
+            <version>2.2-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>xml-apis</groupId>
@@ -100,6 +98,7 @@
             <groupId>org.apache.excalibur.testcase</groupId>
             <artifactId>excalibur-testcase</artifactId>
             <version>2.1</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>jtidy</groupId>

Modified: excalibur/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/pom.xml?rev=371536&r1=371535&r2=371536&view=diff
==============================================================================
--- excalibur/trunk/pom.xml (original)
+++ excalibur/trunk/pom.xml Mon Jan 23 05:08:03 2006
@@ -24,11 +24,11 @@
     <name>Excalibur</name>
     <packaging>pom</packaging>
     <modules>
+        <module>framework</module>
+        <module>fortress</module>
         <module>components</module>
         <module>containerkit</module>
-        <module>fortress</module>
         <module>deprecated</module>
-        <module>framework</module>
         <module>cornerstone</module>
     </modules>
     <repositories>



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