You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@excalibur.apache.org by jh...@apache.org on 2005/11/08 12:16:25 UTC

svn commit: r331787 [1/2] - in /excalibur/trunk: ./ components/ components/datasource/ components/monitor/ components/pool/ components/pool/api/ components/pool/impl/ components/pool/instrumented/ components/sourceresolve/ components/store/ components/...

Author: jheymans
Date: Tue Nov  8 03:15:37 2005
New Revision: 331787

URL: http://svn.apache.org/viewcvs?rev=331787&view=rev
Log:
initial maven2 pom integration

Added:
    excalibur/trunk/components/datasource/pom.xml   (with props)
    excalibur/trunk/components/monitor/pom.xml   (with props)
    excalibur/trunk/components/pom.xml   (with props)
    excalibur/trunk/components/pool/api/pom.xml   (with props)
    excalibur/trunk/components/pool/impl/pom.xml   (with props)
    excalibur/trunk/components/pool/instrumented/pom.xml   (with props)
    excalibur/trunk/components/pool/pom.xml   (with props)
    excalibur/trunk/components/sourceresolve/pom.xml   (with props)
    excalibur/trunk/components/store/pom.xml   (with props)
    excalibur/trunk/components/thread/api/pom.xml   (with props)
    excalibur/trunk/components/thread/impl/pom.xml   (with props)
    excalibur/trunk/components/thread/instrumented/pom.xml   (with props)
    excalibur/trunk/components/thread/pom.xml   (with props)
    excalibur/trunk/components/xmlutil/pom.xml   (with props)
    excalibur/trunk/containerkit/instrument/api/pom.xml   (with props)
    excalibur/trunk/containerkit/instrument/client/pom.xml   (with props)
    excalibur/trunk/containerkit/instrument/mgr-api/pom.xml   (with props)
    excalibur/trunk/containerkit/instrument/mgr-http/pom.xml   (with props)
    excalibur/trunk/containerkit/instrument/mgr-impl/pom.xml   (with props)
    excalibur/trunk/containerkit/instrument/pom.xml   (with props)
    excalibur/trunk/containerkit/lifecycle/api/pom.xml   (with props)
    excalibur/trunk/containerkit/lifecycle/impl/pom.xml   (with props)
    excalibur/trunk/containerkit/lifecycle/pom.xml   (with props)
    excalibur/trunk/containerkit/logger/pom.xml   (with props)
    excalibur/trunk/containerkit/logkit/pom.xml   (with props)
    excalibur/trunk/containerkit/pom.xml   (with props)
    excalibur/trunk/deprecated/component/pom.xml   (with props)
    excalibur/trunk/deprecated/event/api/pom.xml   (with props)
    excalibur/trunk/deprecated/event/impl/pom.xml   (with props)
    excalibur/trunk/deprecated/event/pom.xml   (with props)
    excalibur/trunk/deprecated/pom.xml   (with props)
    excalibur/trunk/deprecated/testcase/pom.xml   (with props)
    excalibur/trunk/fortress/container-api/pom.xml   (with props)
    excalibur/trunk/fortress/container-impl/pom.xml   (with props)
    excalibur/trunk/fortress/examples/pom.xml   (with props)
    excalibur/trunk/fortress/meta/pom.xml   (with props)
    excalibur/trunk/fortress/platform/pom.xml   (with props)
    excalibur/trunk/fortress/pom.xml   (with props)
    excalibur/trunk/framework/api/pom.xml   (with props)
    excalibur/trunk/framework/impl/pom.xml   (with props)
    excalibur/trunk/framework/pom.xml   (with props)
    excalibur/trunk/pom.xml   (with props)

Added: excalibur/trunk/components/datasource/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/datasource/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/datasource/pom.xml (added)
+++ excalibur/trunk/components/datasource/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-datasource</groupId>
+  <artifactId>excalibur-datasource</artifactId>
+  <version>2.1</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.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>hsqldb</groupId>
+      <artifactId>hsqldb</artifactId>
+      <version>1.8.0.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-instrumented</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>concurrent</groupId>
+      <artifactId>concurrent</artifactId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-component</groupId>
+      <artifactId>excalibur-testcase</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-component</groupId>
+      <artifactId>excalibur-component</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-logger</groupId>
+      <artifactId>excalibur-logger</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <!-- for metadata generation only -->
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <!-- for metadata generation only -->
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-meta</artifactId>
+      <version>1.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <!-- for metadata generation only -->
+      <artifactId>qdox</artifactId>
+      <groupId>qdox</groupId>
+      <version>1.5</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+</project>

Propchange: excalibur/trunk/components/datasource/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/monitor/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/monitor/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/monitor/pom.xml (added)
+++ excalibur/trunk/components/monitor/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,121 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-monitor</groupId>
+  <artifactId>excalibur-monitor</artifactId>
+  <version>2.1</version>
+  <name>Excalibur Monitor</name>
+  <inceptionYear>1997</inceptionYear>
+  <description>
+    Avalon Excalibur's resource management code allows you to be notified when a resource has changed. There
+    are two methods of resource management: active and passive. Passive resource management acts as a holder
+    for resources, and after the resource has been modified through it's normal API, notification goes to all
+    listeners. Active resource management does the same, but it also polls the resources periodically to see
+    if the resource was modified through an external method. Active resource management is perfect for
+    monitoring files because they can be modified by external programs, and your program will be notified when
+    the change occurs instead of constantly polling it.
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-logger</groupId>
+      <artifactId>excalibur-logger</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-sourceresolve</groupId>
+      <artifactId>excalibur-sourceresolve</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-component</groupId>
+      <artifactId>excalibur-component</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-component</groupId>
+      <artifactId>excalibur-testcase</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-instrumented</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-meta</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>qdox</groupId>
+      <artifactId>qdox</artifactId>
+      <version>1.5</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/components/monitor/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/pom.xml (added)
+++ excalibur/trunk/components/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-components</groupId>
+  <artifactId>excalibur-components</artifactId>
+  <version>2.1</version>
+  <name>Excalibur Components</name>
+  <packaging>pom</packaging>
+  <modules>
+    <module>sourceresolve</module>
+    <module>xmlutil</module>
+    <module>pool</module>
+    <module>thread</module>
+    <module>store</module>
+    <module>monitor</module>
+    <module>datasource</module>
+  </modules>
+</project>
\ No newline at end of file

Propchange: excalibur/trunk/components/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/pool/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/pool/api/pom.xml (added)
+++ excalibur/trunk/components/pool/api/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+Copyright 2003-2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Pool API</name>
+  <groupId>excalibur-pool</groupId>
+  <artifactId>excalibur-pool-api</artifactId>
+  <version>2.1</version>
+  <inceptionYear>1997</inceptionYear>
+  <description>Excalibur Pool API</description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>  
+</project>

Propchange: excalibur/trunk/components/pool/api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/pool/impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/impl/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/pool/impl/pom.xml (added)
+++ excalibur/trunk/components/pool/impl/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  Copyright 2003-2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Pool Implementation</name>
+  <groupId>excalibur-pool</groupId>
+  <artifactId>excalibur-pool-impl</artifactId>
+  <version>2.1</version>
+  <inceptionYear>1997</inceptionYear>
+  <dependencies>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>concurrent</groupId>
+      <artifactId>concurrent</artifactId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <groupId>junitperf</groupId>
+      <artifactId>junitperf</artifactId>
+      <version>1.8</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/components/pool/impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/pool/instrumented/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/instrumented/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/pool/instrumented/pom.xml (added)
+++ excalibur/trunk/components/pool/instrumented/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+Copyright 2003-2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Pool Instrumented Implementation</name>
+  <groupId>excalibur-pool</groupId>
+  <artifactId>excalibur-pool-instrumented</artifactId>
+  <version>2.1</version>
+  <inceptionYear>1997</inceptionYear>
+  <description>Excalibur Pool Instrumented Implementation</description>
+  <dependencies>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>concurrent</groupId>
+      <artifactId>concurrent</artifactId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <groupId>junitperf</groupId>
+      <artifactId>junitperf</artifactId>
+      <version>1.8</version>
+      <scope>test</scope>      
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/components/pool/instrumented/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/pool/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/pool/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/pool/pom.xml (added)
+++ excalibur/trunk/components/pool/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-pool</groupId>
+  <artifactId>excalibur-pool</artifactId>
+  <version>2.1-SNAPSHOT</version>
+  <name>Excalibur Pool</name>
+  <packaging>pom</packaging>
+  <modules>
+    <module>api</module>
+    <module>impl</module>
+    <module>instrumented</module>
+  </modules>
+</project>
\ No newline at end of file

Propchange: excalibur/trunk/components/pool/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/sourceresolve/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/sourceresolve/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/sourceresolve/pom.xml (added)
+++ excalibur/trunk/components/sourceresolve/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Sourceresolve</name>
+  <groupId>excalibur-sourceresolve</groupId>
+  <artifactId>excalibur-sourceresolve</artifactId>
+  <version>2.1</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 Avalon Excalibur is a component helping you in this task. It resolves sources from a given URI. The URI
+    can use all available protocols of the JRE. In addition own protocols can be plugged-in. So using the
+    standard protocols like HTTP, FTP or file can be handled in the same way, like dealing with custom,
+    self-build protocols such as myxmldatabase://root/documents/test.xml.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-vfs</groupId>
+      <artifactId>commons-vfs</artifactId>
+      <version>20050307052300</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-httpclient</groupId>
+      <artifactId>commons-httpclient</artifactId>
+      <version>2.0.2</version>
+    </dependency>
+    <!-- Needed only if using pre-1.4 JDK
+      <dependency>
+      <id>jsse</id>
+      <version>1.0.3_03</version>
+      </dependency>
+    -->
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-meta</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <!-- for metadata generation only 
+      <dependency>
+      
+      <id>qdox</id>
+      <version>1.5</version>
+      </dependency>
+    -->
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+
+</project>

Propchange: excalibur/trunk/components/sourceresolve/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/store/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/store/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/store/pom.xml (added)
+++ excalibur/trunk/components/store/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-store</groupId>
+  <artifactId>excalibur-store</artifactId>
+  <name>Excalibur Store</name>
+  <inceptionYear>1997</inceptionYear>
+  <version>2.1</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.
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>jisp</groupId>
+      <artifactId>jisp</artifactId>
+      <version>2.5.1</version>
+    </dependency>
+    <dependency>
+      <groupId>concurrent</groupId>
+      <artifactId>concurrent</artifactId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-meta</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <!-- for metadata generation only -->
+      <groupId>qdox</groupId>
+      <artifactId>qdox</artifactId>
+      <version>1.5</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/components/store/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/thread/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/thread/api/pom.xml (added)
+++ excalibur/trunk/components/thread/api/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-thread</groupId>
+  <artifactId>excalibur-thread-api</artifactId>
+  <version>2.1</version>
+  <name>Excalibur Threads API</name>
+  <inceptionYear>2001</inceptionYear>
+  <description>Excalibur Threads API</description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/components/thread/api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/thread/impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/impl/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/thread/impl/pom.xml (added)
+++ excalibur/trunk/components/thread/impl/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-thread</groupId>
+  <artifactId>excalibur-thread-impl</artifactId>
+  <version>2.1</version>
+  <name>Excalibur Threads Implementation</name>
+  <inceptionYear>2001</inceptionYear>
+  <description>Excalibur Threads Implementation</description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-thread</groupId>
+      <artifactId>excalibur-thread-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>concurrent</groupId>
+      <artifactId>concurrent</artifactId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <groupId>junitperf</groupId>
+      <artifactId>junitperf</artifactId>
+      <version>1.8</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+    <build>
+      <sourceDirectory>src/java</sourceDirectory>
+    </build>
+</project>

Propchange: excalibur/trunk/components/thread/impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/thread/instrumented/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/instrumented/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/thread/instrumented/pom.xml (added)
+++ excalibur/trunk/components/thread/instrumented/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-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>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-thread</groupId>
+      <artifactId>excalibur-thread-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-thread</groupId>
+      <artifactId>excalibur-thread-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-instrumented</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>concurrent</groupId>
+      <artifactId>concurrent</artifactId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/components/thread/instrumented/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/thread/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/thread/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/thread/pom.xml (added)
+++ excalibur/trunk/components/thread/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-thread</groupId>
+  <artifactId>excalibur-thread</artifactId>
+  <version>2.1-SNAPSHOT</version>
+  <name>Excalibur Thread</name>
+  <packaging>pom</packaging>
+  <modules>
+    <module>api</module>
+    <module>impl</module>
+    <module>instrumented</module>
+  </modules>
+</project>
\ No newline at end of file

Propchange: excalibur/trunk/components/thread/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/components/xmlutil/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/components/xmlutil/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/components/xmlutil/pom.xml (added)
+++ excalibur/trunk/components/xmlutil/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,161 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur XMLUtil</name>
+  <groupId>excalibur-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 also provides interfaces and classes useful for constructing a pipeline of XML components by defining
+    interfaces for consuming and producing XML in either SAX or DOM formats.
+  </description>
+  <dependencies>
+    <dependency>
+      <artifactId>saxon</artifactId>
+      <groupId>saxon</groupId>
+      <version>6.5.3</version>
+    </dependency>
+    <dependency>
+      <artifactId>saxon7</artifactId>
+      <groupId>saxon</groupId>
+      <version>7.9.1</version>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-logger</groupId>
+      <artifactId>excalibur-logger</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-instrumented</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-sourceresolve</groupId>
+      <artifactId>excalibur-sourceresolve</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-store</groupId>
+      <artifactId>excalibur-store</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>2.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xerces</artifactId>
+      <version>2.4.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <version>2.6.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>saxpath</groupId>
+      <artifactId>saxpath</artifactId>
+      <version>1.0-FCS</version>
+    </dependency>
+    <dependency>
+      <groupId>jaxen</groupId>
+      <artifactId>jaxen</artifactId>
+      <version>1.0-FCS</version>
+    </dependency>
+    <!-- TESTING
+      <dependency>
+      <id>commons-collections</id>
+      <version>3.1</version>
+      </dependency>
+      <dependency>
+      <groupId>excalibur-component</groupId>
+      <artifactId>excalibur-testcase</artifactId>
+      <version>2.1</version>
+      </dependency>
+    -->
+    <dependency>
+      <groupId>jtidy</groupId>
+      <artifactId>jtidy</artifactId>
+      <version>4aug2000r7-dev</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-meta</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <!-- for metadata generation only 
+      <dependency>
+      <id>qdox</id>
+      <version>1.5</version>
+      </dependency>
+    -->
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/components/xmlutil/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/instrument/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/instrument/api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/instrument/api/pom.xml (added)
+++ excalibur/trunk/containerkit/instrument/api/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Instrument API</name>
+  <groupId>excalibur-instrument</groupId>
+  <artifactId>excalibur-instrument-api</artifactId>
+  <version>2.1</version>
+  <inceptionYear>1997</inceptionYear>
+  <description>
+    Excalibur Instrument is an instrumentation utility that allows you to attach a separate JVM to your
+    running application to determine its health. Instrumentation is the process of exposing the internal state
+    in a way that is easy for an administrator or help desk personell to digest. Excalibur Instrumentation is
+    such a package that you can use for your Avalon based projects.
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/instrument/api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/instrument/client/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/instrument/client/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/instrument/client/pom.xml (added)
+++ excalibur/trunk/containerkit/instrument/client/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Instrument Client</name>
+  <artifactId>excalibur-instrument-client</artifactId>
+  <groupId>excalibur-instrument</groupId>
+  <version>2.1</version>
+  <inceptionYear>1997</inceptionYear>
+  <description>
+    Excalibur Instrument is an instrumentation utility that allows you to attach a separate JVM to your
+    running application to determine its health. Instrumentation is the process of exposing the internal state
+    in a way that is easy for an administrator or help desk personell to digest. Excalibur Instrumentation is
+    such a package that you can use for your Avalon based projects.
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/instrument/client/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/instrument/mgr-api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/instrument/mgr-api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/instrument/mgr-api/pom.xml (added)
+++ excalibur/trunk/containerkit/instrument/mgr-api/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Instrument Manager API</name>
+  <artifactId>excalibur-instrument-mgr-api</artifactId>
+  <groupId>excalibur-instrument</groupId>
+  <version>2.1</version>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>2.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/instrument/mgr-api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/instrument/mgr-http/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/instrument/mgr-http/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/instrument/mgr-http/pom.xml (added)
+++ excalibur/trunk/containerkit/instrument/mgr-http/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <version>2.2-dev</version>
+  <name>Excalibur Instrument Manager HTTP Connector</name>
+  <artifactId>excalibur-instrument-mgr-http</artifactId>
+  <groupId>excalibur-instrument</groupId>
+  <description>Excalibur Instrument Manager HTTP Connector</description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-mgr-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>2.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/instrument/mgr-http/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/instrument/mgr-impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/instrument/mgr-impl/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/instrument/mgr-impl/pom.xml (added)
+++ excalibur/trunk/containerkit/instrument/mgr-impl/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <version>2.1</version>
+  <name>Excalibur Instrument Manager Implementation</name>
+  <groupId>excalibur-instrument</groupId>
+  <artifactId>excalibur-instrument-mgr-impl</artifactId>
+  <description>Excalibur Instrument Manager Implementation</description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-mgr-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>2.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>
\ No newline at end of file

Propchange: excalibur/trunk/containerkit/instrument/mgr-impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/instrument/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/instrument/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/instrument/pom.xml (added)
+++ excalibur/trunk/containerkit/instrument/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2003-2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Instrument</name>
+  <description>
+    Excalibur Instrument is an instrumentation utility that allows you to attach a separate JVM to your
+    running application to determine its health. Instrumentation is the process of exposing the internal state
+    in a way that is easy for an administrator or help desk personell to digest. Excalibur Instrumentation is
+    such a package that you can use for your Avalon based projects.
+  </description>
+  <groupId>excalibur-instrument</groupId>
+  <artifactId>excalibur-instrument</artifactId>
+  <inceptionYear>1997</inceptionYear>
+  <version>2.1</version>
+  <packaging>pom</packaging>
+  <modules>
+    <module>api</module>
+    <module>client</module>
+    <module>mgr-api</module>
+    <module>mgr-http</module>
+    <module>mgr-impl</module>
+  </modules>
+</project>

Propchange: excalibur/trunk/containerkit/instrument/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/lifecycle/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/lifecycle/api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/lifecycle/api/pom.xml (added)
+++ excalibur/trunk/containerkit/lifecycle/api/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+ Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Lifecycle Extension API</name>
+  <artifactId>excalibur-lifecycle-api</artifactId>
+  <groupId>excalibur-lifecycle</groupId>
+  <description>Excalibur Lifecycle Extension API</description>
+  <version>2.1</version>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/lifecycle/api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/lifecycle/impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/lifecycle/impl/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/lifecycle/impl/pom.xml (added)
+++ excalibur/trunk/containerkit/lifecycle/impl/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Lifecycle Extension Impl</name>
+  <groupId>excalibur-lifecycle</groupId>
+  <artifactId>excalibur-lifecycle-impl</artifactId>
+  <description>Excalibur Lifecycle Extension Implementation</description>
+  <version>2.1</version>
+  <dependencies>
+    <dependency>
+      <groupId>excalibur-lifecycle</groupId>
+      <artifactId>excalibur-lifecycle-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/lifecycle/impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/lifecycle/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/lifecycle/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/lifecycle/pom.xml (added)
+++ excalibur/trunk/containerkit/lifecycle/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+ Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Lifecycle</name>
+  <groupId>excalibur-lifecycle</groupId>
+  <artifactId>excalibur-lifecycle</artifactId>
+  <inceptionYear>2002</inceptionYear>
+  <version>2.1</version>
+  <packaging>pom</packaging>
+  <modules>
+    <module>api</module>
+    <module>impl</module>
+  </modules>
+</project>
\ No newline at end of file

Propchange: excalibur/trunk/containerkit/lifecycle/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/logger/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/logger/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/logger/pom.xml (added)
+++ excalibur/trunk/containerkit/logger/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Logger</name>
+
+  <groupId>excalibur-logger</groupId>
+  <artifactId>excalibur-logger</artifactId>
+  <version>2.1</version>
+  <inceptionYear>1997</inceptionYear>
+  <description>
+    Excalibur-Logger integrates neatly into Avalon-ECM and Excalibur Fortress. The main goal is to be able to
+    define the log categories on a component basis by specifying a 'logger' attribute which denotes the log
+    category to use for a particular component (given the component is LogEnabled or Loggable).
+  </description>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>servletapi</artifactId>
+      <groupId>servletapi</groupId>
+      <version>2.3</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>geronimo-spec</groupId>
+      <artifactId>geronimo-spec-javamail</artifactId>
+      <version>1.3.1-rc3</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>geronimo-spec</groupId>
+      <artifactId>geronimo-spec-jms</artifactId>
+      <version>1.1-rc4</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <artifactId>xml-apis</artifactId>
+      <groupId>xml-apis</groupId>
+      <version>2.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/logger/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/logkit/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/logkit/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/logkit/pom.xml (added)
+++ excalibur/trunk/containerkit/logkit/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Avalon Logkit</name>
+  <artifactId>avalon-logkit</artifactId>
+  <groupId>avalon-logkit</groupId>
+  <version>2.1</version>
+  <inceptionYear>1997</inceptionYear>
+  <description>Excalibur's Logkit package</description>
+  <dependencies>
+    <dependency>
+      <artifactId>log4j</artifactId>
+      <groupId>log4j</groupId>
+      <version>1.2.11</version>
+    </dependency>
+    <dependency>
+      <artifactId>servletapi</artifactId>
+      <groupId>servletapi</groupId>
+      <version>2.3</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <artifactId>geronimo-spec-javamail</artifactId>
+      <groupId>geronimo-spec</groupId>
+      <version>1.3.1-rc3</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <artifactId>geronimo-spec-jms</artifactId>
+      <groupId>geronimo-spec</groupId>
+      <version>1.1-rc4</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/containerkit/logkit/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/containerkit/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/containerkit/pom.xml (added)
+++ excalibur/trunk/containerkit/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>excalibur-containerkit</groupId>
+  <artifactId>excalibur-containerkit</artifactId>
+  <version>2.1</version>
+  <name>Excalibur Containerkit</name>
+  <packaging>pom</packaging>
+  <modules>
+    <module>logkit</module>
+    <module>logger</module>
+    <module>lifecycle</module>
+    <module>instrument</module>
+  </modules>
+</project>
\ No newline at end of file

Propchange: excalibur/trunk/containerkit/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/deprecated/component/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/deprecated/component/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/deprecated/component/pom.xml (added)
+++ excalibur/trunk/deprecated/component/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Component Manager</name>
+  <artifactId>excalibur-component</artifactId>
+  <groupId>excalibur-component</groupId>
+  <inceptionYear>1997</inceptionYear>
+  <version>2.1</version>
+  <description>
+    This project contains utilities for managing components. ECM is what we call an "avalon container", though
+    it is somewhat different in architecture to newer developments like Phoenix and Fortress. Our intend is to
+    someday completely replace ECM with Fortress. In particular, this package contains the
+    ExcaliburComponentManager, usually abbreviated to ECM.
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-logger</groupId>
+      <artifactId>excalibur-logger</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-mgr-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-mgr-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-instrumented</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>commons-collections</artifactId>
+      <groupId>commons-collections</groupId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>concurrent</artifactId>
+      <groupId>concurrent</groupId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <artifactId>servletapi</artifactId>
+      <groupId>servletapi</groupId>
+      <version>2.3</version>
+    </dependency>
+    <dependency>
+      <artifactId>junit</artifactId>
+      <groupId>junit</groupId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/deprecated/component/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/deprecated/event/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/deprecated/event/api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/deprecated/event/api/pom.xml (added)
+++ excalibur/trunk/deprecated/event/api/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Event API</name>
+  <artifactId>excalibur-event-api</artifactId>
+  <groupId>excalibur-event</groupId>
+  <version>2.1</version>
+  <description>Excalibur Event API</description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/deprecated/event/api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/deprecated/event/impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/deprecated/event/impl/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/deprecated/event/impl/pom.xml (added)
+++ excalibur/trunk/deprecated/event/impl/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Event Implementation</name>
+  <artifactId>excalibur-event-impl</artifactId>
+  <groupId>excalibur-event</groupId>
+  <version>2.1</version>
+  <description>Excalibur Event Implementation</description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-event</groupId>
+      <artifactId>excalibur-event-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-pool</groupId>
+      <artifactId>excalibur-pool-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>concurrent</groupId>
+      <artifactId>concurrent</artifactId>
+      <version>1.3.4</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/deprecated/event/impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/deprecated/event/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/deprecated/event/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/deprecated/event/pom.xml (added)
+++ excalibur/trunk/deprecated/event/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2003-2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Event</name>
+  <groupId>excalibur-event</groupId>
+  <artifactId>excalibur-event-impl</artifactId>
+  <version>2.1</version>
+  <packaging>pom</packaging>
+  <modules>
+    <module>api</module>
+    <module>impl</module>
+  </modules>
+</project>

Propchange: excalibur/trunk/deprecated/event/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/deprecated/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/deprecated/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/deprecated/pom.xml (added)
+++ excalibur/trunk/deprecated/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2003-2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Deprecated</name>
+  <groupId>excalibur-deprecated</groupId>
+  <artifactId>excalibur-deprecated</artifactId>
+  <version>1.0</version>
+  <packaging>pom</packaging>
+  <modules>
+    <module>event</module>
+    <module>component</module>
+    <module>testcase</module>
+  </modules>
+</project>

Propchange: excalibur/trunk/deprecated/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/deprecated/testcase/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/deprecated/testcase/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/deprecated/testcase/pom.xml (added)
+++ excalibur/trunk/deprecated/testcase/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Testcase</name>
+  <artifactId>excalibur-testcase</artifactId>
+  <groupId>excalibur-component</groupId>
+  <inceptionYear>2004</inceptionYear>
+  <version>2.1</version>
+  <description>
+    This project contains utilities for managing components. ECM is what we call an "avalon container", though
+    it is somewhat different in architecture to newer developments like Phoenix and Fortress. Our intend is to
+    someday completely replace ECM with Fortress. In particular, this package contains the
+    ExcaliburComponentManager, usually abbreviated to ECM.
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-logger</groupId>
+      <artifactId>excalibur-logger</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>excalibur-component</artifactId>
+      <groupId>excalibur-component</groupId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/deprecated/testcase/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/fortress/container-api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/fortress/container-api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/fortress/container-api/pom.xml (added)
+++ excalibur/trunk/fortress/container-api/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+  Copyright 2003-2004 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.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <name>Excalibur Fortress Container API</name>
+  <groupId>excalibur-fortress</groupId>
+  <artifactId>excalibur-fortress-container-api</artifactId>
+  <version>1.2</version>
+  <description>
+    Fortress contains a framework to help you create your own avalon containers. It boasts asynchronous
+    management of your component instances, high scalability, easier maintenance of your code, and easy
+    embedding into various environments like servlet engines.
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-impl</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>d-haven-mpool</groupId>
+      <artifactId>managed-pool</artifactId>
+      <version>1.0</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>



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