aboutsummaryrefslogtreecommitdiffstats
path: root/zookeeper-command-line-client
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2019-09-18 07:44:34 +0200
committerHarald Musum <musum@verizonmedia.com>2019-09-18 07:44:34 +0200
commitb5d253b673474093ae1a0fe99f1713b6e2e01023 (patch)
treee83d9e2f59af024479af38680c5cdedbe74fc5c9 /zookeeper-command-line-client
parent134e4257fcf36ad964c3da330c2a8bf9ced7ba84 (diff)
First step in creating a separate module for zookeeper command line clients
Diffstat (limited to 'zookeeper-command-line-client')
-rw-r--r--zookeeper-command-line-client/OWNERS1
-rw-r--r--zookeeper-command-line-client/README1
-rw-r--r--zookeeper-command-line-client/pom.xml52
3 files changed, 54 insertions, 0 deletions
diff --git a/zookeeper-command-line-client/OWNERS b/zookeeper-command-line-client/OWNERS
new file mode 100644
index 00000000000..e0a00db5f4f
--- /dev/null
+++ b/zookeeper-command-line-client/OWNERS
@@ -0,0 +1 @@
+musum
diff --git a/zookeeper-command-line-client/README b/zookeeper-command-line-client/README
new file mode 100644
index 00000000000..6b9577a0c4c
--- /dev/null
+++ b/zookeeper-command-line-client/README
@@ -0,0 +1 @@
+Vespa ZooKeeper command line clients: vespa-zkcli, vespa-zkls, vespa-ckctl, vespa-zkcat
diff --git a/zookeeper-command-line-client/pom.xml b/zookeeper-command-line-client/pom.xml
new file mode 100644
index 00000000000..eb1cdab4fd5
--- /dev/null
+++ b/zookeeper-command-line-client/pom.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0"?>
+<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<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.yahoo.vespa</groupId>
+ <artifactId>parent</artifactId>
+ <version>7-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>zookeeper-command-line-client</artifactId>
+ <version>7-SNAPSHOT</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.zookeeper</groupId>
+ <artifactId>zookeeper</artifactId>
+ </dependency>
+ <dependency>
+ <!-- Needed by vespa-zkcli -->
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <finalName>vespa-zookeeper-command-line-client</finalName>
+ <archive>
+ <manifest>
+ <mainClass>org.apache.zookeeper.ZooKeeperMain</mainClass>
+ </manifest>
+ </archive>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <!-- append to the packaging phase. -->
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>