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 [2/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/...

Propchange: excalibur/trunk/fortress/container-api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/fortress/container-impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/fortress/container-impl/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/fortress/container-impl/pom.xml (added)
+++ excalibur/trunk/fortress/container-impl/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,134 @@
+<?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 Implementation</name>
+  <groupId>excalibur-fortress</groupId>
+  <artifactId>excalibur-fortress-container-impl</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>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>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>commons-collections</artifactId>
+      <groupId>commons-collections</groupId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.7.0</version>
+    </dependency>
+    <dependency>
+      <artifactId>concurrent</artifactId>
+      <groupId>concurrent</groupId>
+      <version>1.3.4</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>d-haven-event</groupId>
+      <artifactId>d-haven-event</artifactId>
+      <version>1.0.3</version>
+    </dependency>
+    <dependency>
+      <groupId>d-haven-mpool</groupId>
+      <artifactId>managed-pool</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <artifactId>bcel</artifactId>
+      <groupId>bcel</groupId>
+      <version>5.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>excalibur-logger</artifactId>
+      <groupId>excalibur-logger</groupId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>excalibur-sourceresolve</artifactId>
+      <groupId>excalibur-sourceresolve</groupId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-lifecycle</groupId>
+      <artifactId>excalibur-lifecycle-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-lifecycle</groupId>
+      <artifactId>excalibur-lifecycle-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>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

Propchange: excalibur/trunk/fortress/container-impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/fortress/examples/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/fortress/examples/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/fortress/examples/pom.xml (added)
+++ excalibur/trunk/fortress/examples/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,111 @@
+<?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 Examples</name>
+  <artifactId>excalibur-fortress-examples</artifactId>
+  <groupId>excalibur-fortress</groupId>
+  <version>1.2</version>
+  <description>
+    The Avalon project is an effort to create, design, develop and maintain a common framework and set of
+    components for applications written using the Java language.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>servletapi</groupId>
+      <artifactId>servletapi</artifactId>
+      <version>2.3</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- dependencies for container -->
+    <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>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>concurrent</artifactId>
+      <groupId>concurrent</groupId>
+      <version>1.3.4</version>
+    </dependency>
+
+    <!-- fortress dependencies -->
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-impl</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-meta</artifactId>
+      <version>1.2</version>
+    </dependency>
+
+    <dependency>
+      <groupId>excalibur-instrument</groupId>
+      <artifactId>excalibur-instrument-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+
+    <dependency>
+      <groupId>excalibur-lifecycle</groupId>
+      <artifactId>excalibur-lifecycle-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-lifecycle</groupId>
+      <artifactId>excalibur-lifecycle-impl</artifactId>
+      <version>2.1</version>
+    </dependency>
+
+    <!-- dependencies for tools -->
+    <dependency>
+      <artifactId>qdox</artifactId>
+      <groupId>qdox</groupId>
+      <version>1.5</version>
+    </dependency>
+    <dependency>
+      <artifactId>ant</artifactId>
+      <groupId>ant</groupId>
+      <version>1.6.2</version>
+    </dependency>
+  </dependencies>
+
+</project>

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

Added: excalibur/trunk/fortress/meta/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/fortress/meta/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/fortress/meta/pom.xml (added)
+++ excalibur/trunk/fortress/meta/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,55 @@
+<?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 Meta Generator</name>
+  <groupId>excalibur-fortress</groupId>
+  <artifactId>excalibur-fortress-meta</artifactId>
+  <version>1.2</version>
+  <description>Excalibur Fortress Meta Generation</description>
+  <dependencies>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</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>qdox</groupId>
+      <artifactId>qdox</artifactId>
+      <version>1.5</version>
+    </dependency>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.6.2</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

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

Added: excalibur/trunk/fortress/platform/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/fortress/platform/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/fortress/platform/pom.xml (added)
+++ excalibur/trunk/fortress/platform/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,147 @@
+<?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 Platform</name>
+  <artifactId>excalibur-fortress-platform</artifactId>
+  <groupId>excalibur-fortress</groupId>
+  <version>1.2</version>
+  <description>
+    A generic, modular kernel that can run multiple instances of Avalon-Fortress-Container-based containers.
+  </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-fortress</groupId>
+      <artifactId>excalibur-fortress-container-api</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-container-impl</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-meta</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-fortress</groupId>
+      <artifactId>excalibur-fortress-examples</artifactId>
+      <version>1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>commons-collections</artifactId>
+      <groupId>commons-collections</groupId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.7.0</version>
+    </dependency>
+    <dependency>
+      <artifactId>concurrent</artifactId>
+      <groupId>concurrent</groupId>
+      <version>1.3.4</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>d-haven-event</groupId>
+      <artifactId>d-haven-event</artifactId>
+      <version>1.0.3</version>
+    </dependency>
+    <dependency>
+      <groupId>d-haven-mpool</groupId>
+      <artifactId>managed-pool</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <artifactId>bcel</artifactId>
+      <groupId>bcel</groupId>
+      <version>5.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>excalibur-logger</artifactId>
+      <groupId>excalibur-logger</groupId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>excalibur-sourceresolve</artifactId>
+      <groupId>excalibur-sourceresolve</groupId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-lifecycle</groupId>
+      <artifactId>excalibur-lifecycle-api</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>excalibur-lifecycle</groupId>
+      <artifactId>excalibur-lifecycle-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>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

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

Added: excalibur/trunk/fortress/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/fortress/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/fortress/pom.xml (added)
+++ excalibur/trunk/fortress/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,33 @@
+<?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>
+  <groupId>excalibur-fortress</groupId>
+  <artifactId>excalibur-fortress</artifactId>
+  <version>1.0</version>
+  <inceptionYear>2003</inceptionYear>
+  <name>Excalibur Components</name>
+  <packaging>pom</packaging>
+  <modules>
+    <module>container-api</module>
+    <module>container-impl</module>
+    <module>meta</module>
+    <module>platform</module>
+    <module>examples</module>
+  </modules>
+</project>

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

Added: excalibur/trunk/framework/api/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/framework/api/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/framework/api/pom.xml (added)
+++ excalibur/trunk/framework/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>Avalon Framework API</name>
+  <groupId>avalon-framework</groupId>
+  <artifactId>avalon-framework-api</artifactId>
+  <description>Avalon Framework API</description>
+  <version>4.3</version>
+  <dependencies>
+    <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/framework/api/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: excalibur/trunk/framework/impl/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/framework/impl/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/framework/impl/pom.xml (added)
+++ excalibur/trunk/framework/impl/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,82 @@
+<?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 Framework Implementation</name>
+  <groupId>avalon-framework</groupId>
+  <artifactId>avalon-framework-impl</artifactId>
+  <description>Avalon Framework Implementation</description>
+  <version>4.3</version>
+  <dependencies>
+    <dependency>
+      <groupId>avalon-framework</groupId>
+      <artifactId>avalon-framework-api</artifactId>
+      <version>4.3</version>
+    </dependency>
+    <dependency>
+      <groupId>avalon-logkit</groupId>
+      <artifactId>avalon-logkit</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <artifactId>xml-apis</artifactId>
+      <groupId>xml-apis</groupId>
+      <version>2.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xmlParserAPIs</artifactId>
+      <version>2.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <artifactId>xerces</artifactId>
+      <groupId>xerces</groupId>
+      <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>
+      <artifactId>commons-logging</artifactId>
+      <groupId>commons-logging</groupId>
+      <version>1.0.4</version>
+    </dependency>
+
+    <!-- 
+      <dependency>
+      <id>junit</id>
+      <version>3.8.1</version>
+      <scope>test</scope>
+      </dependency>
+      <dependency>
+      <id>jmock</id>
+      <version>1.0.1</version>
+      <scope>test</scope>
+      </dependency>
+    -->
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+  </build>
+</project>

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

Added: excalibur/trunk/framework/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/framework/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/framework/pom.xml (added)
+++ excalibur/trunk/framework/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>Avalon Framework</name>
+  <groupId>avalon-framework</groupId>
+  <artifactId>avalon-framework</artifactId>
+  <description>Avalon Framework</description>
+  <version>4.3</version>
+  <inceptionYear>1997</inceptionYear>
+  <modules>
+    <module>api</module>
+    <module>impl</module>
+  </modules>
+</project>

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

Added: excalibur/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/excalibur/trunk/pom.xml?rev=331787&view=auto
==============================================================================
--- excalibur/trunk/pom.xml (added)
+++ excalibur/trunk/pom.xml Tue Nov  8 03:15:37 2005
@@ -0,0 +1,33 @@
+<?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</groupId>
+  <artifactId>excalibur</artifactId>
+  <version>2.1</version>
+  <name>Excalibur Components</name>
+  <packaging>pom</packaging>
+  <modules>
+    <module>components</module>
+    <module>containerkit</module>
+    <module>framework</module>
+    <module>fortress</module>
+    <module>deprecated</module>
+  </modules>
+</project>
\ No newline at end of file

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



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