MVN

com.netflix.curator : curator-x-zkclient-bridge

Maven & Gradle

Mar 18, 2015
1 stars

Apache Curator ZKClient Bridge · You may be trying to integrate a project that uses ZKClient and would like a way to use Curator with that project (for example Kafka). The ZKClient Bridge accomplishes that.

<dependency>
    <groupId>com.netflix.curator</groupId>
    <artifactId>curator-x-zkclient-bridge</artifactId>
    <version>3.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.netflix.curator : curator-x-zkclient-bridge to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.0.0

All Versions

Choose a version of com.netflix.curator : curator-x-zkclient-bridge to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.0.x
curator-x-zkclient-bridge-3.0.0
2.0.x
curator-x-zkclient-bridge-2.0.0
1.3.x
curator-x-zkclient-bridge-1.3.3
curator-x-zkclient-bridge-1.3.2
curator-x-zkclient-bridge-1.3.1
curator-x-zkclient-bridge-1.3.0
1.2.x
curator-x-zkclient-bridge-1.2.6
curator-x-zkclient-bridge-1.2.5
curator-x-zkclient-bridge-1.2.4
curator-x-zkclient-bridge-1.2.3
curator-x-zkclient-bridge-1.2.2
1.1.x
curator-x-zkclient-bridge-1.1.18
1.0.x
curator-x-zkclient-bridge-1.0.20

How to add a dependency to Maven

Add the following com.netflix.curator : curator-x-zkclient-bridge maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.netflix.curator</groupId>
    <artifactId>curator-x-zkclient-bridge</artifactId>
    <version>3.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.netflix.curator : curator-x-zkclient-bridge gradle dependency to your build.gradle file:

implementation 'com.netflix.curator:curator-x-zkclient-bridge:3.0.0'

Gradle Kotlin DSL: Add the following com.netflix.curator : curator-x-zkclient-bridge gradle kotlin dependency to your build.gradle.kts file:

implementation("com.netflix.curator:curator-x-zkclient-bridge:3.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.netflix.curator : curator-x-zkclient-bridge sbt scala dependency to your build.sbt file:

libraryDependencies += "com.netflix.curator" % "curator-x-zkclient-bridge" % "3.0.0"

Advertisement