Run| Workspace| Log| Issues| Fixes| Pre-reqs| Stats| XRef| Maven Repository Proxy Log Gump Logo

Details

File Contents

<?xml version="1.0" encoding="UTF-8"?>
<!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
 this work for additional information regarding copyright ownership.
 The ASF licenses this file to You 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>
    <currentVersion>2.2-dev</currentVersion>

    <extend>${basedir}/../project-common.xml</extend>

    <name>Excalibur Datasource</name>
    <id>excalibur-datasource</id>

    <inceptionYear>2003</inceptionYear>
    <shortDescription>Excalibur's Datasource component</shortDescription>
    <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>
        <!--
        Not really needed, and also no longer the official MySQL JDBC driver.
        -->
        <!--
        <dependency>
            <id>mm-mysql</id>
            <version>2.0.13-bin</version>
        </dependency>
        -->
        <dependency>
            <id>hsqldb</id>
            <version>1.8.0.1</version>
            <properties note="Only required by tests.">
                <build>true</build>
            </properties>
        </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.2-dev</version>
        </dependency>
        <dependency>
            <id>commons-collections</id>
            <version>3.1</version>
        </dependency>
        <dependency>
            <id>concurrent</id>
            <version>1.3.4</version>
        </dependency>
        <dependency>
            <groupId>excalibur-component</groupId>
            <artifactId>excalibur-testcase</artifactId>
            <version>2.1</version>
            <properties note="Only required by tests.">
                <build>true</build>
            </properties>
        </dependency>
        <dependency>
            <groupId>excalibur-component</groupId>
            <artifactId>excalibur-component</artifactId>
            <version>2.1</version>
            <properties note="Only required by tests.">
                <build>true</build>
            </properties>
        </dependency>
        <dependency>
            <id>excalibur-logger</id>
            <version>2.1</version>
        </dependency>

        <dependency>
            <!-- for metadata generation only -->
            <groupId>excalibur-fortress</groupId>
            <artifactId>excalibur-fortress-container-api</artifactId>
            <version>1.2</version>
            <properties note="Used for META generation at build time.">
                <build>true</build>
            </properties>
        </dependency>
        <dependency>
            <!-- for metadata generation only -->
            <groupId>excalibur-fortress</groupId>
            <artifactId>excalibur-fortress-meta</artifactId>
            <version>1.3-dev</version>
            <properties note="Used for META generation at build time.">
                <build>true</build>
            </properties>
        </dependency>
        <dependency>
            <!-- for metadata generation only -->
            <id>qdox</id>
            <version>1.5</version>
            <properties note="Used for META generation at build time.">
                <build>true</build>
            </properties>
        </dependency>
    </dependencies>
</project>

Last Updated: Wed, 02 Jul 2008 00:00:56 ().Python Logo