<!--

    Copyright (C) 2011 Progress Software, Inc. All rights reserved.
    http://fusesource.com

    The software in this package is published under the terms of the CDDL license
    a copy of which has been included with this distribution in the license.txt file.

-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.fusesource.fabric</groupId>
        <artifactId>fabric-project</artifactId>
        <version>1.0</version>
    </parent>

    <artifactId>fabric-zookeeper</artifactId>
    <packaging>bundle</packaging>

    <name>${project.artifactId}</name>
    <description>FuseSource Fabric :: ZooKeeper Service</description>

    <properties>
        <fabric.osgi.export>
            org.fusesource.fabric.zookeeper*;version=${fabric.osgi.version};-noimport:=true,
        </fabric.osgi.export>
        <fabric.osgi.import.before.defaults>
            !org.apache.log4j.jmx,
            !org.apache.log4j.spi,
            !jline*,
            !org.xml.*,
            !javax.xml.parsers
        </fabric.osgi.import.before.defaults>
        <fabric.osgi.import.additional>
            org.apache.log4j*;version="[1.2,2)"
        </fabric.osgi.import.additional>
        <fabric.osgi.services.export>
            org.linkedin.zookeeper.client.IZKClient,
            org.osgi.service.url.URLStreamHandlerService;url.handler.protocol=zk
        </fabric.osgi.services.export>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.fusesource.fabric</groupId>
            <artifactId>fabric-linkedin-zookeeper</artifactId>
            <version>1.0</version>
        </dependency>

        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.compendium</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>

        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging-api</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>

        </plugins>
    </build>

</project>