2012-10-24 03:39:51 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-10-24 05:09:43 -04:00
|
|
|
<!--
|
|
|
|
~ Druid - a distributed column store.
|
2015-01-30 20:36:38 -08:00
|
|
|
~ Copyright 2012 - 2015 Metamarkets Group Inc.
|
2012-10-24 05:09:43 -04:00
|
|
|
~
|
2015-01-30 20:36:38 -08:00
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
2012-10-24 05:09:43 -04:00
|
|
|
~
|
2015-01-30 20:36:38 -08:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2012-10-24 05:09:43 -04:00
|
|
|
~
|
2015-01-30 20:36:38 -08:00
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
2012-10-24 05:09:43 -04:00
|
|
|
-->
|
|
|
|
|
2015-02-23 14:27:58 -08:00
|
|
|
<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">
|
2012-10-24 03:39:51 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-02-03 16:48:00 -08:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>io.druid</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>2</version>
|
|
|
|
</parent>
|
|
|
|
|
2012-10-24 03:39:51 -04:00
|
|
|
<artifactId>druid</artifactId>
|
2015-06-18 17:35:19 -07:00
|
|
|
<version>0.8.0-rc2-SNAPSHOT</version>
|
2015-02-03 16:48:00 -08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>${project.groupId}:${project.artifactId}</name>
|
|
|
|
<description>Druid - A Distributed Column Store</description>
|
|
|
|
<url>http://druid.io/</url>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Fangjin Yang</name>
|
|
|
|
<url>https://github.com/fjy</url>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<name>Eric Tschetter</name>
|
|
|
|
<url>https://github.com/cheddar</url>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<name>Xavier Léauté</name>
|
|
|
|
<url>https://github.com/xvrl</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<inceptionYear>2011</inceptionYear>
|
|
|
|
|
2012-10-24 03:39:51 -04:00
|
|
|
<scm>
|
2014-12-23 11:17:20 -08:00
|
|
|
<connection>scm:git:ssh://git@github.com/druid-io/druid.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/druid-io/druid.git</developerConnection>
|
2015-02-03 16:48:00 -08:00
|
|
|
<url>https://github.com/druid-io/druid.git</url>
|
2015-06-18 17:35:19 -07:00
|
|
|
<tag>druid-0.8.0-SNAPSHOT</tag>
|
2013-11-11 16:13:32 -08:00
|
|
|
</scm>
|
2012-10-24 03:39:51 -04:00
|
|
|
|
|
|
|
<properties>
|
2015-03-30 13:40:04 -07:00
|
|
|
<metamx.java-util.version>0.27.0</metamx.java-util.version>
|
2014-11-26 11:03:57 -08:00
|
|
|
<apache.curator.version>2.7.0</apache.curator.version>
|
2014-11-26 12:24:40 -08:00
|
|
|
<jetty.version>9.2.5.v20141112</jetty.version>
|
2015-04-18 15:52:39 -07:00
|
|
|
<druid.api.version>0.3.8</druid.api.version>
|
2014-12-03 09:44:19 -08:00
|
|
|
<jackson.version>2.4.4</jackson.version>
|
2015-03-23 17:19:16 -07:00
|
|
|
<log4j.version>2.2</log4j.version>
|
2015-02-19 10:29:54 -08:00
|
|
|
<slf4j.version>1.7.10</slf4j.version>
|
2015-05-04 11:37:07 -07:00
|
|
|
<hadoop.compile.version>2.3.0</hadoop.compile.version>
|
2012-10-24 03:39:51 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2013-05-15 17:28:08 -07:00
|
|
|
<module>common</module>
|
|
|
|
<module>examples</module>
|
|
|
|
<module>indexing-hadoop</module>
|
2013-05-15 15:37:04 -07:00
|
|
|
<module>indexing-service</module>
|
2013-11-11 14:04:03 -08:00
|
|
|
<module>processing</module>
|
2013-05-15 17:28:08 -07:00
|
|
|
<module>server</module>
|
2013-05-01 17:37:38 -05:00
|
|
|
<module>services</module>
|
2014-11-06 23:53:24 +05:30
|
|
|
<module>integration-tests</module>
|
2015-05-11 10:32:54 +05:30
|
|
|
<module>benchmarks</module>
|
2015-01-29 13:31:34 -08:00
|
|
|
<module>aws-common</module>
|
2013-11-11 14:04:03 -08:00
|
|
|
<!-- Non-default modules -->
|
2014-11-21 14:45:24 -08:00
|
|
|
<module>extensions/cassandra-storage</module>
|
|
|
|
<module>extensions/hdfs-storage</module>
|
|
|
|
<module>extensions/s3-extensions</module>
|
2015-02-13 14:32:47 -08:00
|
|
|
<!-- kafka-seven extension is not built by default since
|
|
|
|
Kafka 0.7 is not available in Maven Central -->
|
|
|
|
<!-- <module>extensions/kafka-seven</module> -->
|
2014-11-21 14:45:24 -08:00
|
|
|
<module>extensions/kafka-eight</module>
|
|
|
|
<module>extensions/rabbitmq</module>
|
|
|
|
<module>extensions/histogram</module>
|
|
|
|
<module>extensions/mysql-metadata-storage</module>
|
|
|
|
<module>extensions/postgresql-metadata-storage</module>
|
2015-03-17 16:08:42 -07:00
|
|
|
<module>extensions/azure-extensions</module>
|
2012-10-24 03:39:51 -04:00
|
|
|
</modules>
|
|
|
|
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2013-08-28 15:50:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.druid</groupId>
|
|
|
|
<artifactId>druid-api</artifactId>
|
2013-11-24 20:27:34 +05:30
|
|
|
<version>${druid.api.version}</version>
|
2013-08-28 15:50:59 -05:00
|
|
|
</dependency>
|
|
|
|
|
2012-10-31 16:10:07 -07:00
|
|
|
<!-- Compile Scope -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>emitter</artifactId>
|
2015-04-15 16:22:59 -07:00
|
|
|
<version>0.3.1</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>http-client</artifactId>
|
2015-04-15 16:22:59 -07:00
|
|
|
<version>1.0.2</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>java-util</artifactId>
|
2013-02-12 20:58:12 -06:00
|
|
|
<version>${metamx.java-util.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2013-05-03 10:35:26 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>bytebuffer-collections</artifactId>
|
2015-06-22 18:07:24 -07:00
|
|
|
<version>0.1.6</version>
|
2013-05-03 10:35:26 -07:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>server-metrics</artifactId>
|
2015-04-27 15:06:25 -07:00
|
|
|
<version>0.2.0</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2013-01-09 14:51:35 -08:00
|
|
|
<version>1.7</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
2013-03-15 13:48:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
2013-08-23 14:11:34 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
<artifactId>aws-java-sdk</artifactId>
|
2014-12-15 19:27:28 -07:00
|
|
|
<version>1.8.11</version>
|
2013-08-23 14:11:34 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
2014-12-08 15:29:06 -08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2013-08-23 14:11:34 -05:00
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
2014-12-08 15:29:06 -08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
2013-08-23 14:11:34 -05:00
|
|
|
</exclusion>
|
2014-01-14 17:34:02 -08:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</exclusion>
|
2013-08-23 14:11:34 -05:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ning</groupId>
|
|
|
|
<artifactId>compress-lzf</artifactId>
|
2015-01-02 11:37:03 -08:00
|
|
|
<version>1.0.3</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2013-07-29 15:14:20 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.airlift</groupId>
|
|
|
|
<artifactId>airline</artifactId>
|
2013-10-09 15:15:41 -05:00
|
|
|
<version>0.6</version>
|
2013-07-29 15:14:20 -07:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.skife.config</groupId>
|
|
|
|
<artifactId>config-magic</artifactId>
|
|
|
|
<version>0.9</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-04-24 17:29:24 -05:00
|
|
|
<groupId>org.apache.curator</groupId>
|
2012-10-31 16:10:07 -07:00
|
|
|
<artifactId>curator-client</artifactId>
|
2013-05-15 17:28:08 -07:00
|
|
|
<version>${apache.curator.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-04-24 17:29:24 -05:00
|
|
|
<groupId>org.apache.curator</groupId>
|
2012-10-31 16:10:07 -07:00
|
|
|
<artifactId>curator-framework</artifactId>
|
2013-05-15 17:28:08 -07:00
|
|
|
<version>${apache.curator.version}</version>
|
2014-04-21 21:26:34 +05:30
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jboss.netty</groupId>
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-04-24 17:29:24 -05:00
|
|
|
<groupId>org.apache.curator</groupId>
|
2012-10-31 16:10:07 -07:00
|
|
|
<artifactId>curator-recipes</artifactId>
|
2013-05-15 17:28:08 -07:00
|
|
|
<version>${apache.curator.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-04-24 17:29:24 -05:00
|
|
|
<groupId>org.apache.curator</groupId>
|
2012-10-31 16:10:07 -07:00
|
|
|
<artifactId>curator-x-discovery</artifactId>
|
2013-05-15 17:28:08 -07:00
|
|
|
<version>${apache.curator.version}</version>
|
2012-11-07 17:27:23 -08:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2014-07-29 17:23:32 -07:00
|
|
|
<version>16.0.1</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
2013-08-01 15:28:08 -07:00
|
|
|
<version>4.0-beta</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-servlet</artifactId>
|
2013-08-01 15:28:08 -07:00
|
|
|
<version>4.0-beta</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2013-07-30 11:58:05 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-multibindings</artifactId>
|
2013-08-01 15:28:08 -07:00
|
|
|
<version>4.0-beta</version>
|
2013-07-30 11:58:05 -07:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ibm.icu</groupId>
|
|
|
|
<artifactId>icu4j</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
</dependency>
|
2015-02-19 09:47:11 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mozilla</groupId>
|
|
|
|
<artifactId>rhino</artifactId>
|
|
|
|
<version>1.7R5</version>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
2013-05-15 15:37:04 -07:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-05-15 15:37:04 -07:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-05-15 15:37:04 -07:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2013-02-25 17:05:01 -08:00
|
|
|
<dependency>
|
2013-05-15 15:37:04 -07:00
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-guava</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2013-02-25 17:05:01 -08:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
2013-02-12 20:58:12 -06:00
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-joda</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2013-02-12 20:58:12 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
<artifactId>jackson-dataformat-smile</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2013-02-12 20:58:12 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2014-10-07 14:19:59 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
<artifactId>jackson-jaxrs-smile-provider</artifactId>
|
2014-12-03 09:44:19 -08:00
|
|
|
<version>${jackson.version}</version>
|
2013-05-14 11:25:57 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
2015-02-02 18:16:56 -08:00
|
|
|
<version>5.1.3.Final</version>
|
2013-05-14 11:25:57 -05:00
|
|
|
</dependency>
|
2013-06-17 10:53:50 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
<version>1.1.0.Final</version>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.inject</groupId>
|
|
|
|
<artifactId>javax.inject</artifactId>
|
|
|
|
<version>1</version>
|
|
|
|
</dependency>
|
2015-02-02 18:16:56 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</dependency>
|
2014-06-06 14:19:55 -07:00
|
|
|
<dependency>
|
2014-07-28 16:32:15 -07:00
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.el</artifactId>
|
|
|
|
<version>3.0.0</version>
|
2014-06-06 14:19:55 -07:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jamesmurty.utils</groupId>
|
|
|
|
<artifactId>java-xmlbuilder</artifactId>
|
|
|
|
<version>0.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jdbi</groupId>
|
|
|
|
<artifactId>jdbi</artifactId>
|
|
|
|
<version>2.32</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-core</artifactId>
|
2013-07-29 14:26:51 -07:00
|
|
|
<version>1.17.1</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey.contribs</groupId>
|
|
|
|
<artifactId>jersey-guice</artifactId>
|
2013-07-29 14:26:51 -07:00
|
|
|
<version>1.17.1</version>
|
2013-12-30 15:26:46 -08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-servlet</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
2013-07-29 14:26:51 -07:00
|
|
|
<version>1.17.1</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-06-17 10:53:50 -07:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2014-11-26 12:24:40 -08:00
|
|
|
<version>${jetty.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2013-05-22 17:16:56 -07:00
|
|
|
<dependency>
|
2013-06-17 10:53:50 -07:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
2014-11-26 12:24:40 -08:00
|
|
|
<version>${jetty.version}</version>
|
2013-06-17 10:53:50 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
2014-11-26 12:24:40 -08:00
|
|
|
<version>${jetty.version}</version>
|
2014-07-28 16:32:15 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-proxy</artifactId>
|
2014-11-26 12:24:40 -08:00
|
|
|
<version>${jetty.version}</version>
|
2013-05-22 17:16:56 -07:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
2014-12-02 16:55:32 -08:00
|
|
|
<version>2.6</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-12-18 12:54:58 -08:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
<version>${log4j.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-12-18 12:54:58 -08:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<version>${log4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
<version>${log4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-1.2-api</artifactId>
|
|
|
|
<version>${log4j.version}</version>
|
|
|
|
</dependency>
|
2015-02-19 10:29:54 -08:00
|
|
|
<dependency>
|
|
|
|
<!-- This is not slf4j's version because of performance concerns
|
|
|
|
http://www.slf4j.org/api/org/slf4j/bridge/SLF4JBridgeHandler.html
|
|
|
|
Please make sure to do performance tests before switching this to slf4j
|
|
|
|
Users wishing to use slf4j's solution are encouraged to also use
|
|
|
|
Logback
|
|
|
|
More info at
|
|
|
|
http://logback.qos.ch/manual/configuration.html#LevelChangePropagator
|
|
|
|
http://www.slf4j.org/legacy.html#jul-to-slf4j
|
|
|
|
-->
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-jul</artifactId>
|
|
|
|
<version>${log4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
2014-12-18 12:54:58 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.lmax</groupId>
|
|
|
|
<artifactId>disruptor</artifactId>
|
|
|
|
<version>3.3.0</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2012-12-06 15:54:40 -08:00
|
|
|
<dependency>
|
2014-11-26 19:33:52 +05:30
|
|
|
<groupId>net.spy</groupId>
|
2012-12-06 15:54:40 -08:00
|
|
|
<artifactId>spymemcached</artifactId>
|
2015-06-19 12:35:36 -07:00
|
|
|
<version>2.11.7</version>
|
2012-12-06 15:54:40 -08:00
|
|
|
</dependency>
|
2013-02-25 09:26:52 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
<version>4.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
2013-10-03 16:36:48 -07:00
|
|
|
<artifactId>antlr4-coordinator</artifactId>
|
2013-02-25 09:26:52 -08:00
|
|
|
<version>4.0</version>
|
|
|
|
</dependency>
|
2013-03-05 11:47:57 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
2014-10-29 17:30:41 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
2013-05-28 14:50:26 -07:00
|
|
|
<dependency>
|
2013-06-05 12:51:29 -07:00
|
|
|
<groupId>net.jpountz.lz4</groupId>
|
|
|
|
<artifactId>lz4</artifactId>
|
2014-12-02 23:49:34 -08:00
|
|
|
<version>1.3.0</version>
|
2013-05-28 14:50:26 -07:00
|
|
|
</dependency>
|
2013-08-01 17:27:33 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
2014-03-26 11:43:31 +05:30
|
|
|
<version>2.5.0</version>
|
2013-08-01 17:27:33 +02:00
|
|
|
</dependency>
|
2013-08-28 15:50:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.tesla.aether</groupId>
|
|
|
|
<artifactId>tesla-aether</artifactId>
|
2013-10-30 18:19:59 -07:00
|
|
|
<version>0.0.5</version>
|
2013-08-28 15:50:59 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
|
|
|
<artifactId>aether-api</artifactId>
|
|
|
|
<version>0.9.0.M2</version>
|
|
|
|
</dependency>
|
2013-11-13 10:31:19 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jets3t</groupId>
|
|
|
|
<artifactId>jets3t</artifactId>
|
2015-03-16 10:50:04 -07:00
|
|
|
<version>0.9.3</version>
|
2014-06-02 15:42:55 -07:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<!-- exclude artifact not available in maven central -->
|
|
|
|
<groupId>com.centerkey.utils</groupId>
|
|
|
|
<artifactId>barebonesbrowserlaunch</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-11-13 10:31:19 -08:00
|
|
|
</dependency>
|
2013-11-13 11:31:54 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>4.2</version>
|
|
|
|
</dependency>
|
2013-11-13 13:06:34 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
<version>4.2</version>
|
|
|
|
</dependency>
|
2013-10-09 15:15:41 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2014-03-26 11:43:31 +05:30
|
|
|
<artifactId>hadoop-client</artifactId>
|
2015-05-04 11:37:07 -07:00
|
|
|
<version>${hadoop.compile.version}</version>
|
2013-10-09 15:15:41 -05:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-09-09 15:59:33 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapdb</groupId>
|
|
|
|
<artifactId>mapdb</artifactId>
|
2015-03-20 08:31:23 -07:00
|
|
|
<version>1.0.7</version>
|
2014-09-09 15:59:33 +05:30
|
|
|
</dependency>
|
2014-11-12 10:31:11 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derbynet</artifactId>
|
|
|
|
<version>10.11.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derbyclient</artifactId>
|
|
|
|
<version>10.11.1.1</version>
|
|
|
|
</dependency>
|
2013-04-26 19:16:56 -05:00
|
|
|
|
2012-10-31 16:10:07 -07:00
|
|
|
<!-- Test Scope -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>java-util</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
2013-02-12 20:58:12 -06:00
|
|
|
<version>${metamx.java-util.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
2014-12-01 13:35:38 -08:00
|
|
|
<version>3.3</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2013-12-27 16:13:38 -08:00
|
|
|
<version>4.11</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-11-07 11:08:23 -08:00
|
|
|
<dependency>
|
2015-02-02 18:16:56 -08:00
|
|
|
<groupId>com.carrotsearch</groupId>
|
|
|
|
<artifactId>junit-benchmarks</artifactId>
|
|
|
|
<version>0.7.2</version>
|
|
|
|
<scope>test</scope>
|
2014-11-07 11:08:23 -08:00
|
|
|
</dependency>
|
2012-12-04 16:29:51 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.caliper</groupId>
|
|
|
|
<artifactId>caliper</artifactId>
|
|
|
|
<version>0.5-rc1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-04-22 20:04:28 -05:00
|
|
|
<dependency>
|
2013-04-24 17:29:24 -05:00
|
|
|
<groupId>org.apache.curator</groupId>
|
2013-04-22 20:04:28 -05:00
|
|
|
<artifactId>curator-test</artifactId>
|
2013-05-15 17:28:08 -07:00
|
|
|
<version>${apache.curator.version}</version>
|
2014-05-01 14:57:41 -07:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jboss.netty</groupId>
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-04-22 20:04:28 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-08-13 18:35:07 -07:00
|
|
|
<dependency>
|
2013-11-11 16:13:32 -08:00
|
|
|
<groupId>com.ircclouds.irc</groupId>
|
|
|
|
<artifactId>irc-api</artifactId>
|
|
|
|
<version>1.0-0011</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.maxmind.geoip2</groupId>
|
|
|
|
<artifactId>geoip2</artifactId>
|
|
|
|
<version>0.4.0</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-08-14 14:31:55 -07:00
|
|
|
</dependency>
|
2014-11-06 23:53:24 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
<version>6.8.7</version>
|
|
|
|
</dependency>
|
2015-02-22 10:58:35 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2015-02-03 16:48:00 -08:00
|
|
|
|
2012-10-24 03:39:51 -04:00
|
|
|
<build>
|
2015-03-09 13:44:54 -07:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eluder.coveralls</groupId>
|
|
|
|
<artifactId>coveralls-maven-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2012-10-31 12:58:16 -07:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- locale settings must be set on the command line before startup -->
|
2015-04-08 12:44:49 -07:00
|
|
|
<!-- set heap size to work around https://github.com/travis-ci/travis-ci/issues/3396 -->
|
|
|
|
<argLine>-Xmx1024m -Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8 -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine>
|
2015-03-11 17:56:14 -07:00
|
|
|
<!-- our tests are very verbose, let's keep the volume down -->
|
|
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
2015-02-03 16:48:00 -08:00
|
|
|
</configuration>
|
2012-10-31 12:58:16 -07:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<configuration>
|
2015-02-03 16:48:00 -08:00
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
2012-10-31 12:58:16 -07:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
2013-11-07 16:33:34 -08:00
|
|
|
<version>2.8</version>
|
2012-10-31 12:58:16 -07:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<artifactId>maven-help-plugin</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2015-02-03 16:48:00 -08:00
|
|
|
<version>2.2</version>
|
2012-10-31 12:58:16 -07:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-10-31 12:58:16 -07:00
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.scala-tools</groupId>
|
|
|
|
<artifactId>maven-scala-plugin</artifactId>
|
|
|
|
<version>2.15.2</version>
|
|
|
|
</plugin>
|
2013-02-25 09:26:52 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
<version>4.0</version>
|
|
|
|
</plugin>
|
2013-05-01 17:31:29 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
</plugin>
|
2014-03-17 13:52:22 -07:00
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<version>1.8</version>
|
2015-01-05 13:27:29 -08:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-03 16:48:00 -08:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.2.1</version>
|
2015-01-05 13:27:29 -08:00
|
|
|
</plugin>
|
2015-03-09 13:44:54 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<instrumentation>
|
|
|
|
<ignores>
|
|
|
|
<ignore>io.druid.sql.antlr4.*</ignore>
|
|
|
|
</ignores>
|
|
|
|
<excludes>
|
|
|
|
<exclude>io/druid/sql/antlr4/**/*.class</exclude>
|
|
|
|
</excludes>
|
|
|
|
</instrumentation>
|
|
|
|
<format>xml</format>
|
|
|
|
<!-- aggregated reports for multi-module projects -->
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-10-31 12:58:16 -07:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2012-10-24 03:39:51 -04:00
|
|
|
</build>
|
|
|
|
|
2015-04-08 14:11:44 -07:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>strict</id>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<compilerId>javac-with-errorprone</compilerId>
|
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-compiler-javac-errorprone</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2012-10-24 03:39:51 -04:00
|
|
|
</project>
|