summaryrefslogtreecommitdiffstats
path: root/zookeeper-command-line-client/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'zookeeper-command-line-client/pom.xml')
-rw-r--r--zookeeper-command-line-client/pom.xml35
1 files changed, 15 insertions, 20 deletions
diff --git a/zookeeper-command-line-client/pom.xml b/zookeeper-command-line-client/pom.xml
index ae3f5b3bfa1..7bbbf33a62f 100644
--- a/zookeeper-command-line-client/pom.xml
+++ b/zookeeper-command-line-client/pom.xml
@@ -63,27 +63,22 @@
<build>
<plugins>
<plugin>
- <artifactId>maven-assembly-plugin</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration><skip>true</skip></configuration>
+ </plugin>
+ <plugin>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>bundle-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals><goal>assemble-fat-jar</goal></goals>
+ </execution>
+ </executions>
<configuration>
- <archive>
- <manifest>
- <mainClass>com.yahoo.vespa.zookeeper.cli.Main</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>
+ <mainClass>com.yahoo.vespa.zookeeper.cli.Main</mainClass>
+ </configuration>
</plugin>
</plugins>
</build>