|
<?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"> |
|
<name>curator-unknownhostexception</name> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>no.found</groupId> |
|
<artifactId>curator-unknownhostexception</artifactId> |
|
<version>0.1.0-SNAPSHOT</version> |
|
<packaging>jar</packaging> |
|
<description>Demo project to test handling of unknownhostexception</description> |
|
<inceptionYear>2014</inceptionYear> |
|
|
|
<properties> |
|
<byteman.version>2.1.4.1</byteman.version> |
|
</properties> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.apache.zookeeper</groupId> |
|
<artifactId>zookeeper</artifactId> |
|
<version>3.4.5</version> |
|
<scope>compile</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.jboss.netty</groupId> |
|
<artifactId>netty</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>jline</groupId> |
|
<artifactId>jline</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<version>1.2.17</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.curator</groupId> |
|
<artifactId>curator-recipes</artifactId> |
|
<version>2.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.curator</groupId> |
|
<artifactId>curator-test</artifactId> |
|
<version>2.4.0</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.11</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.easymock</groupId> |
|
<artifactId>easymock</artifactId> |
|
<version>3.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jboss.byteman</groupId> |
|
<artifactId>byteman</artifactId> |
|
<scope>test</scope> |
|
<version>${byteman.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jboss.byteman</groupId> |
|
<artifactId>byteman-submit</artifactId> |
|
<scope>test</scope> |
|
<version>${byteman.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jboss.byteman</groupId> |
|
<artifactId>byteman-install</artifactId> |
|
<scope>test</scope> |
|
<version>${byteman.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jboss.byteman</groupId> |
|
<artifactId>byteman-bmunit</artifactId> |
|
<scope>test</scope> |
|
<version>${byteman.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun</groupId> |
|
<artifactId>tools</artifactId> |
|
<version>1.6</version> |
|
<scope>system</scope> |
|
<systemPath>${java.home}/../lib/tools.jar</systemPath> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<!-- <version>2.4.3</version> --> |
|
<configuration> |
|
<useManifestOnlyJar>false</useManifestOnlyJar> |
|
<forkMode>once</forkMode> |
|
<parallel>false</parallel> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project> |