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>
    <extend>${basedir}/../project-common.xml</extend>

    <name>Excalibur Monitor</name>
    <id>excalibur-monitor</id>
    <inceptionYear>1997</inceptionYear>
    <shortDescription>Avalon Excalibur's resource management code allows you to be notified when a resource has changed.</shortDescription>
    <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>
            <id>excalibur-logger</id>
            <version>2.1</version>
        </dependency>
        <dependency>
            <id>excalibur-sourceresolve</id>
            <version>2.1</version>
        </dependency>

        <dependency>
            <!-- testing only -->
            <id>commons-collections</id>
            <version>3.1</version>
        </dependency>
        <dependency>
            <!-- testing only -->
            <id>excalibur-component</id>
            <version>2.1</version>
        </dependency>
        <dependency>
            <!-- testing only -->
            <groupId>excalibur-component</groupId>
            <artifactId>excalibur-testcase</artifactId>
            <version>2.1</version>
        </dependency>
        <dependency>
            <!-- testing only -->
            <groupId>excalibur-pool</groupId>
            <artifactId>excalibur-pool-api</artifactId>
            <version>2.1</version>
        </dependency>
        <dependency>
            <!-- testing only -->
            <groupId>excalibur-pool</groupId>
            <artifactId>excalibur-pool-impl</artifactId>
            <version>2.1</version>
        </dependency>
        <dependency>
            <!-- testing only -->
            <groupId>excalibur-pool</groupId>
            <artifactId>excalibur-pool-instrumented</artifactId>
            <version>2.1</version>
        </dependency>
        <dependency>
            <!-- testing only -->
            <groupId>excalibur-instrument</groupId>
            <artifactId>excalibur-instrument-api</artifactId>
            <version>2.1</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.3-dev</version>
        </dependency>
        <dependency>
            <id>qdox</id>
            <version>1.5</version>
        </dependency>
    </dependencies>
</project>

Last Updated: Sat, 19 Jul 2008 16:01:04 ().Python Logo