Maven Repository - POM file for Service curator-recipes 2.5.0 2.5.0

Summary

Curator Recipes.

All of the recipes listed on the ZooKeeper recipes doc (except two phase commit)..

Declaration

Here is the list of declaration for curator-recipes. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.curator</groupId>
   <artifactId>curator-recipes</artifactId>
   <version>2.5.0</version>
</dependency>

If you think this Maven repository POM file listing for curator-recipes is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Apache License.





Packages

The following packages are defined in the curator-recipes-2.5.0.jar

org.apache.curator.framework.recipes.atomic
org.apache.curator.framework.recipes.barriers
org.apache.curator.framework.recipes.cache
org.apache.curator.framework.recipes.leader
org.apache.curator.framework.recipes.locks
org.apache.curator.framework.recipes.nodes
org.apache.curator.framework.recipes.queue
org.apache.curator.framework.recipes.shared

POM File Source

Here is the content of the POM file.

<?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 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.apache.curator</groupId>
        <artifactId>apache-curator</artifactId>
        <version>2.5.0</version>
    </parent>

    <artifactId>curator-recipes</artifactId>
    <version>2.5.0</version>
    <packaging>bundle</packaging>

    <name>Curator Recipes</name>
    <description>All of the recipes listed on the ZooKeeper recipes doc (except two phase commit).</description>
    <inceptionYear>2011</inceptionYear>

    <properties>
        <osgi.import.package>
            *
        </osgi.import.package>
        <osgi.export.package>
            org.apache.curator.framework.recipes*;version="${project.version}";-noimport:=true
        </osgi.export.package>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-framework</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>