All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.maven.com.github.vivekkothari.dropwizard-extra-curator.pom.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<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>com.github.vivekkothari</groupId>
        <artifactId>dropwizard-extra</artifactId>
        <version>0.9.2-1</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>dropwizard-extra-curator</artifactId>

    <name>Dropwizard Extra Curator</name>
    <url>http://datasift.github.com/dropwizard-extra/dropwizard-extra-curator</url>
    <description>
        Dropwizard integration for working with ZooKeeper using Netflix's Curator client.
    </description>

    <dependencies>
        <dependency>
            <groupId>io.dropwizard</groupId>
            <artifactId>dropwizard-core</artifactId>
        </dependency>
        <dependency>
            <groupId>com.github.vivekkothari</groupId>
            <artifactId>dropwizard-extra-zookeeper</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-framework</artifactId>
            <version>2.0.1-incubating</version>
            <exclusions>
                <!-- use version from dropwizard-core -->
                <exclusion>
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <reporting>
        <plugins>
            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <links combine.children="append">
                        <link>http://netflix.github.com/curator/doc/</link>
                        <link>http://zookeeper.apache.org/doc/current/api/</link>
                    </links>
                </configuration>
            </plugin>
        </plugins>
    </reporting>
</project>





© 2015 - 2025 Weber Informatics LLC | Privacy Policy