mirror of https://github.com/apache/druid.git
208 lines
7.2 KiB
XML
208 lines
7.2 KiB
XML
|
<?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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>com.metamx.druid</groupId>
|
||
|
<artifactId>druid-client</artifactId>
|
||
|
<version>0.1.0-SNAPSHOT</version>
|
||
|
<name>druid-client</name>
|
||
|
<description>druid-client</description>
|
||
|
<scm>
|
||
|
<connection>scm:git:ssh://git@github.com/metamx/druid.git</connection>
|
||
|
<developerConnection>scm:git:ssh://git@github.com/metamx/druid.git</developerConnection>
|
||
|
<url>http://www.github.com/metamx/druid</url>
|
||
|
</scm>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.metamx</groupId>
|
||
|
<artifactId>druid</artifactId>
|
||
|
<version>0.1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.metamx.druid</groupId>
|
||
|
<artifactId>druid-common</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.metamx.druid</groupId>
|
||
|
<artifactId>druid-index-common</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.metamx</groupId>
|
||
|
<artifactId>http-client</artifactId>
|
||
|
<version>0.6.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.metamx</groupId>
|
||
|
<artifactId>emitter</artifactId>
|
||
|
<version>0.0.7</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.mortbay.jetty</groupId>
|
||
|
<artifactId>jetty</artifactId>
|
||
|
<version>6.1.26</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.inject</groupId>
|
||
|
<artifactId>guice</artifactId>
|
||
|
<version>3.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<version>11.0.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sun.jersey</groupId>
|
||
|
<artifactId>jersey-server</artifactId>
|
||
|
<version>1.9.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sun.jersey</groupId>
|
||
|
<artifactId>jersey-core</artifactId>
|
||
|
<version>1.9.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sun.jersey.contribs</groupId>
|
||
|
<artifactId>jersey-guice</artifactId>
|
||
|
<version>1.9.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.inject.extensions</groupId>
|
||
|
<artifactId>guice-servlet</artifactId>
|
||
|
<version>3.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.jackson</groupId>
|
||
|
<artifactId>jackson-jaxrs</artifactId>
|
||
|
<version>1.9.9</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.jackson</groupId>
|
||
|
<artifactId>jackson-smile</artifactId>
|
||
|
<version>1.9.9</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>log4j</groupId>
|
||
|
<artifactId>log4j</artifactId>
|
||
|
<version>1.2.16</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
<version>1.6.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.sgroschupf</groupId>
|
||
|
<artifactId>zkclient</artifactId>
|
||
|
<version>0.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-codec</groupId>
|
||
|
<artifactId>commons-codec</artifactId>
|
||
|
<version>1.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.skife.config</groupId>
|
||
|
<artifactId>config-magic</artifactId>
|
||
|
<version>0.9</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.metamx</groupId>
|
||
|
<artifactId>server-metrics</artifactId>
|
||
|
<version>0.0.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.davekoelle</groupId>
|
||
|
<artifactId>alphanum</artifactId>
|
||
|
<version>1.0.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.ibm.icu</groupId>
|
||
|
<artifactId>icu4j</artifactId>
|
||
|
<version>4.8.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Tests -->
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.8.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.easymock</groupId>
|
||
|
<artifactId>easymock</artifactId>
|
||
|
<version>3.0</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>2.3.2</version>
|
||
|
<configuration>
|
||
|
<source>1.6</source>
|
||
|
<target>1.6</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>1.6</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<outputFile>
|
||
|
${project.build.directory}/${project.artifactId}-${project.version}-selfcontained.jar
|
||
|
</outputFile>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-help-plugin</artifactId>
|
||
|
<version>2.1.1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.7.2</version>
|
||
|
<configuration>
|
||
|
<systemPropertyVariables>
|
||
|
<user.timezone>UTC</user.timezone>
|
||
|
</systemPropertyVariables>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>2.4</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>test-jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|