<!--

    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-linkedin-zookeeper</artifactId>
    <packaging>bundle</packaging>

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

    <properties>
        <fabric.osgi.export>
            org.linkedin.zookeeper*;version=${linkedin-zookeeper-version};-noimport:=true,
            org.linkedin.util.*;-noimport:=true,
            org.apache.zookeeper*;version="3.3.1";-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.private.pkg>
            org.apache.jute*
        </fabric.osgi.private.pkg>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.linkedin</groupId>
            <artifactId>org.linkedin.zookeeper-impl</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.linkedin</groupId>
            <artifactId>org.linkedin.util-core</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>

        </plugins>
    </build>

</project>