blob: a0508ab3b9aecb68244b4dcc5a8c068fde730b3a [file] [log] [blame]
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.kerby</groupId>
<artifactId>has-project</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>zookeeper-dist</artifactId>
<description>ZooKeeper dist</description>
<name>ZooKeeper dist</name>
<dependencies>
<dependency>
<groupId>org.apache.kerby</groupId>
<artifactId>has-client</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>