2012-10-24 03:39:51 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-10-24 05:09:43 -04:00
|
|
|
<!--
|
2018-07-11 09:55:18 -07:00
|
|
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
~ or more contributor license agreements. See the NOTICE file
|
|
|
|
~ distributed with this work for additional information
|
|
|
|
~ regarding copyright ownership. The ASF licenses this file
|
|
|
|
~ to you 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
|
|
|
~
|
2018-07-11 09:55:18 -07:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2012-10-24 05:09:43 -04:00
|
|
|
~
|
2018-07-11 09:55:18 -07: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
|
|
|
-->
|
|
|
|
|
2016-02-29 17:43:35 -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>
|
|
|
|
|
2018-08-30 09:56:26 -07:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2012-10-24 03:39:51 -04:00
|
|
|
<artifactId>druid</artifactId>
|
2018-02-02 10:06:38 -08:00
|
|
|
<version>0.13.0-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>
|
2016-02-02 17:01:58 -08:00
|
|
|
<name>Druid Committers</name>
|
|
|
|
<url>http://druid.io/community/index.html#committers</url>
|
2015-02-03 16:48:00 -08:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<inceptionYear>2011</inceptionYear>
|
|
|
|
|
2012-10-24 03:39:51 -04:00
|
|
|
<scm>
|
2018-08-30 09:56:26 -07:00
|
|
|
<connection>scm:git:ssh://git@github.com/apache/incubator-druid.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/apache/incubator-druid.git</developerConnection>
|
|
|
|
<url>https://github.com/apache/incubator-druid.git</url>
|
2018-02-02 10:06:38 -08:00
|
|
|
<tag>0.13.0-SNAPSHOT</tag>
|
2013-11-11 16:13:32 -08:00
|
|
|
</scm>
|
2012-10-24 03:39:51 -04:00
|
|
|
|
|
|
|
<properties>
|
2017-08-21 15:02:42 -05:00
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2017-09-15 10:48:32 -07:00
|
|
|
<apache.curator.version>4.0.0</apache.curator.version>
|
|
|
|
<apache.curator.test.version>2.12.0</apache.curator.test.version>
|
SQL: Upgrade to Calcite 1.14.0, some refactoring of internals. (#4889)
* SQL: Upgrade to Calcite 1.14.0, some refactoring of internals.
This brings benefits:
- Ability to do GROUP BY and ORDER BY with ordinals.
- Ability to support IN filters beyond 19 elements (fixes #4203).
Some refactoring of druid-sql internals:
- Builtin aggregators and operators are implemented as SqlAggregators
and SqlOperatorConversions rather being special cases. This simplifies
the Expressions and GroupByRules code, which were becoming complex.
- SqlAggregator implementations are no longer responsible for filtering.
Added new functions:
- Expressions: strpos.
- SQL: TRUNCATE, TRUNC, LENGTH, CHAR_LENGTH, STRLEN, STRPOS, SUBSTR,
and DATE_TRUNC.
* Add missing @Override annotation.
* Adjustments for forbidden APIs.
* Adjustments for forbidden APIs.
* Disable GROUP BY alias.
* Doc reword.
2017-10-10 12:44:05 -07:00
|
|
|
<avatica.version>1.10.0</avatica.version>
|
2018-01-04 12:11:24 -08:00
|
|
|
<calcite.version>1.15.0</calcite.version>
|
2018-06-05 09:08:57 -07:00
|
|
|
<dropwizard.metrics.version>4.0.0</dropwizard.metrics.version>
|
2018-01-24 13:10:36 -08:00
|
|
|
<fastutil.version>8.1.0</fastutil.version>
|
2016-12-07 17:49:16 -06:00
|
|
|
<guava.version>16.0.1</guava.version>
|
2016-07-18 08:08:43 -07:00
|
|
|
<guice.version>4.1.0</guice.version>
|
2018-06-09 05:53:08 +08:00
|
|
|
<jetty.version>9.4.10.v20180503</jetty.version>
|
2017-06-09 16:32:07 -05:00
|
|
|
<jersey.version>1.19.3</jersey.version>
|
2018-03-21 15:36:54 -07:00
|
|
|
<!-- jackson 2.7.x causes injection error and 2.8.x can't be used because avatica is using 2.6.3 -->
|
|
|
|
<jackson.version>2.6.7</jackson.version>
|
2016-01-09 10:45:40 -08:00
|
|
|
<log4j.version>2.5</log4j.version>
|
2018-01-24 13:10:36 -08:00
|
|
|
<!-- HttpClient has not yet been ported to Netty 4.x -->
|
|
|
|
<netty3.version>3.10.6.Final</netty3.version>
|
2018-08-30 09:56:26 -07:00
|
|
|
<!-- Update to Netty 4.1 is not possible yet, see https://github.com/apache/incubator-druid/issues/4390 and comments
|
|
|
|
in https://github.com/apache/incubator-druid/pull/4973 -->
|
2018-01-24 13:10:36 -08:00
|
|
|
<netty4.version>4.0.52.Final</netty4.version>
|
2015-08-25 13:27:54 -07:00
|
|
|
<slf4j.version>1.7.12</slf4j.version>
|
2016-07-19 03:53:11 +05:30
|
|
|
<!-- If compiling with different hadoop version also modify default hadoop coordinates in TaskConfig.java -->
|
2018-03-21 15:36:54 -07:00
|
|
|
<hadoop.compile.version>2.8.3</hadoop.compile.version>
|
2016-07-27 01:42:56 +09:00
|
|
|
<hive.version>2.0.0</hive.version>
|
2016-12-23 20:04:27 -06:00
|
|
|
<powermock.version>1.6.6</powermock.version>
|
2018-03-21 15:36:54 -07:00
|
|
|
<aws.sdk.bundle.version>1.11.199</aws.sdk.bundle.version>
|
2017-09-22 10:46:55 -07:00
|
|
|
<caffeine.version>2.5.5</caffeine.version>
|
2017-11-08 19:56:31 -08:00
|
|
|
<!-- When upgrading ZK, edit docs and integration tests as well (integration-tests/docker-base/setup.sh) -->
|
2018-01-04 08:29:20 +05:30
|
|
|
<zookeeper.version>3.4.11</zookeeper.version>
|
2018-03-01 21:08:24 +05:30
|
|
|
<repoOrgId>org-apache-id</repoOrgId>
|
|
|
|
<repoOrgName>org-apache-name</repoOrgName>
|
|
|
|
<repoOrgUrl>https://repository.apache.org/content/repositories/public/</repoOrgUrl>
|
2018-09-11 19:16:59 -07:00
|
|
|
|
|
|
|
<!-- Allow the handful of flaky tests with transient failures to pass. -->
|
|
|
|
<surefire.rerunFailingTestsCount>3</surefire.rerunFailingTestsCount>
|
2012-10-24 03:39:51 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2016-03-24 10:53:31 -07:00
|
|
|
<module>api</module>
|
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>
|
2016-12-16 17:15:59 -08:00
|
|
|
<module>sql</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>
|
2016-10-21 14:57:07 -07:00
|
|
|
<module>java-util</module>
|
2017-01-17 10:10:27 -08:00
|
|
|
<module>extendedset</module>
|
2017-02-03 18:45:11 +01:00
|
|
|
<module>hll</module>
|
2016-02-29 17:43:35 -08:00
|
|
|
<!-- Core extensions -->
|
|
|
|
<module>extensions-core/avro-extensions</module>
|
|
|
|
<module>extensions-core/datasketches</module>
|
2017-02-03 02:25:21 +05:30
|
|
|
<module>extensions-core/druid-kerberos</module>
|
2016-02-29 17:43:35 -08:00
|
|
|
<module>extensions-core/hdfs-storage</module>
|
|
|
|
<module>extensions-core/histogram</module>
|
2016-08-05 09:32:58 +09:00
|
|
|
<module>extensions-core/stats</module>
|
2016-02-29 17:43:35 -08:00
|
|
|
<module>extensions-core/kafka-eight</module>
|
|
|
|
<module>extensions-core/kafka-extraction-namespace</module>
|
2016-03-01 16:51:50 -08:00
|
|
|
<module>extensions-core/kafka-indexing-service</module>
|
2016-02-29 17:43:35 -08:00
|
|
|
<module>extensions-core/mysql-metadata-storage</module>
|
|
|
|
<module>extensions-core/postgresql-metadata-storage</module>
|
2017-05-30 13:11:58 -07:00
|
|
|
<module>extensions-core/protobuf-extensions</module>
|
2016-05-24 10:56:40 -07:00
|
|
|
<module>extensions-core/lookups-cached-global</module>
|
2016-09-16 13:45:54 -07:00
|
|
|
<module>extensions-core/lookups-cached-single</module>
|
2016-02-29 17:43:35 -08:00
|
|
|
<module>extensions-core/s3-extensions</module>
|
2017-07-06 19:40:12 -05:00
|
|
|
<module>extensions-core/simple-client-sslcontext</module>
|
2017-12-14 10:36:04 -08:00
|
|
|
<module>extensions-core/druid-basic-security</module>
|
2016-02-29 17:43:35 -08:00
|
|
|
<!-- Community extensions -->
|
2018-03-26 16:28:46 -05:00
|
|
|
<module>extensions-contrib/influx-extensions</module>
|
2016-02-29 17:43:35 -08:00
|
|
|
<module>extensions-contrib/azure-extensions</module>
|
|
|
|
<module>extensions-contrib/cassandra-storage</module>
|
|
|
|
<module>extensions-contrib/druid-rocketmq</module>
|
|
|
|
<module>extensions-contrib/cloudfiles-extensions</module>
|
|
|
|
<module>extensions-contrib/graphite-emitter</module>
|
|
|
|
<module>extensions-contrib/kafka-eight-simpleConsumer</module>
|
|
|
|
<module>extensions-contrib/rabbitmq</module>
|
2016-03-24 11:11:11 +08:00
|
|
|
<module>extensions-contrib/distinctcount</module>
|
2016-03-28 15:51:36 +08:00
|
|
|
<module>extensions-contrib/parquet-extensions</module>
|
2016-06-13 04:28:21 -07:00
|
|
|
<module>extensions-contrib/statsd-emitter</module>
|
2016-07-27 01:42:56 +09:00
|
|
|
<module>extensions-contrib/orc-extensions</module>
|
2016-11-15 16:00:21 +09:00
|
|
|
<module>extensions-contrib/time-min-max</module>
|
2016-11-16 16:36:45 +08:00
|
|
|
<module>extensions-contrib/google-extensions</module>
|
2016-12-06 08:14:35 +09:00
|
|
|
<module>extensions-contrib/virtual-columns</module>
|
2016-12-14 02:05:15 +08:00
|
|
|
<module>extensions-contrib/thrift-extensions</module>
|
2016-12-20 00:42:47 +05:30
|
|
|
<module>extensions-contrib/ambari-metrics-emitter</module>
|
2017-01-20 16:39:15 -06:00
|
|
|
<module>extensions-contrib/sqlserver-metadata-storage</module>
|
2017-04-05 06:07:43 +09:00
|
|
|
<module>extensions-contrib/kafka-emitter</module>
|
2017-08-09 01:11:45 +08:00
|
|
|
<module>extensions-contrib/redis-cache</module>
|
2018-02-14 05:10:22 +08:00
|
|
|
<module>extensions-contrib/opentsdb-emitter</module>
|
2018-06-10 03:24:54 +08:00
|
|
|
<module>extensions-contrib/materialized-view-maintenance</module>
|
|
|
|
<module>extensions-contrib/materialized-view-selection</module>
|
2017-05-12 01:55:17 -05:00
|
|
|
<!-- distribution packaging -->
|
|
|
|
<module>distribution</module>
|
2012-10-24 03:39:51 -04:00
|
|
|
</modules>
|
|
|
|
|
2018-03-01 21:08:24 +05:30
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>${repoOrgId}</id>
|
|
|
|
<name>${repoOrgName}</name>
|
|
|
|
<url>${repoOrgUrl}</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Compile Scope -->
|
|
|
|
<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>
|
2017-06-09 16:32:07 -05:00
|
|
|
<version>2.5</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</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>
|
2018-03-21 15:36:54 -07:00
|
|
|
<artifactId>aws-java-sdk-bundle</artifactId>
|
|
|
|
<version>${aws.sdk.bundle.version}</version>
|
2013-08-23 14:11:34 -05:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ning</groupId>
|
|
|
|
<artifactId>compress-lzf</artifactId>
|
2017-12-04 23:04:27 -03:00
|
|
|
<version>1.0.4</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>
|
2015-08-25 15:30:12 -07:00
|
|
|
<version>0.7</version>
|
2017-01-19 11:49:08 -08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<!--LGPL licenced library-->
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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>
|
2016-02-27 01:47:01 +05:30
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-06-13 04:28:21 -07:00
|
|
|
</dependency>
|
2016-04-19 22:06:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</artifactId>
|
2017-11-08 19:56:31 -08:00
|
|
|
<version>${zookeeper.version}</version>
|
2016-06-03 12:39:23 -06:00
|
|
|
<exclusions>
|
2016-06-13 04:28:21 -07:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
2017-06-09 16:32:07 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
</exclusion>
|
2016-06-03 12:39:23 -06:00
|
|
|
</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-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>
|
2017-09-15 10:48:32 -07:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</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-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>
|
2016-12-16 17:15:59 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.calcite</groupId>
|
|
|
|
<artifactId>calcite-core</artifactId>
|
|
|
|
<version>${calcite.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.calcite</groupId>
|
|
|
|
<artifactId>calcite-linq4j</artifactId>
|
|
|
|
<version>${calcite.version}</version>
|
|
|
|
</dependency>
|
2017-01-06 14:45:17 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.calcite.avatica</groupId>
|
|
|
|
<artifactId>avatica-core</artifactId>
|
|
|
|
<version>${avatica.version}</version>
|
|
|
|
</dependency>
|
2016-12-16 17:15:59 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.calcite.avatica</groupId>
|
|
|
|
<artifactId>avatica-server</artifactId>
|
|
|
|
<version>${avatica.version}</version>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2016-12-07 17:49:16 -06:00
|
|
|
<version>${guava.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
2016-07-18 08:08:43 -07:00
|
|
|
<version>${guice.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-servlet</artifactId>
|
2016-07-18 08:08:43 -07:00
|
|
|
<version>${guice.version}</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>
|
2016-07-18 08:08:43 -07:00
|
|
|
<version>${guice.version}</version>
|
2013-07-30 11:58:05 -07:00
|
|
|
</dependency>
|
2018-03-20 08:59:33 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.errorprone</groupId>
|
|
|
|
<artifactId>error_prone_annotations</artifactId>
|
|
|
|
<version>2.2.0</version>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ibm.icu</groupId>
|
|
|
|
<artifactId>icu4j</artifactId>
|
2017-06-09 16:32:07 -05:00
|
|
|
<version>54.1.1</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2015-02-19 09:47:11 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mozilla</groupId>
|
|
|
|
<artifactId>rhino</artifactId>
|
|
|
|
<version>1.7R5</version>
|
|
|
|
</dependency>
|
2018-04-06 08:06:45 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
<version>1.16</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.tukaani</groupId>
|
|
|
|
<artifactId>xz</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
</dependency>
|
2018-08-27 07:09:24 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.luben</groupId>
|
|
|
|
<artifactId>zstd-jni</artifactId>
|
|
|
|
<version>1.3.3-1</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>org.jdbi</groupId>
|
|
|
|
<artifactId>jdbi</artifactId>
|
2015-08-25 15:12:34 -07:00
|
|
|
<version>2.63.1</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-core</artifactId>
|
2015-08-07 17:32:27 -07:00
|
|
|
<version>${jersey.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey.contribs</groupId>
|
|
|
|
<artifactId>jersey-guice</artifactId>
|
2015-08-07 17:32:27 -07:00
|
|
|
<version>${jersey.version}</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>
|
2015-08-07 17:32:27 -07:00
|
|
|
<version>${jersey.version}</version>
|
2012-10-31 16:10:07 -07:00
|
|
|
</dependency>
|
2017-06-09 16:32:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-json</artifactId>
|
|
|
|
<version>${jersey.version}</version>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<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>
|
2016-12-16 17:15:59 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
</dependency>
|
2017-06-09 16:32:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-security</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
</dependency>
|
2018-01-24 13:10:36 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
<version>${netty3.version}</version>
|
|
|
|
</dependency>
|
2016-12-16 17:15:59 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
2018-01-24 13:10:36 -08:00
|
|
|
<version>${netty4.version}</version>
|
2016-12-16 17:15:59 -08:00
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
2017-06-09 16:32:07 -05:00
|
|
|
<version>2.9.9</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>
|
2016-02-29 17:43:35 -08:00
|
|
|
<!-- 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
|
|
|
|
-->
|
2015-02-19 10:29:54 -08:00
|
|
|
<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>
|
2017-06-09 16:32:07 -05:00
|
|
|
<version>3.3.6</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>
|
2017-06-09 16:32:07 -05:00
|
|
|
<version>2.12.3</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>
|
2015-12-16 01:03:10 -06:00
|
|
|
<version>4.5.1</version>
|
2013-02-25 09:26:52 -08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
2013-10-03 16:36:48 -07:00
|
|
|
<artifactId>antlr4-coordinator</artifactId>
|
2015-12-16 01:03:10 -06:00
|
|
|
<version>4.5.1</version>
|
2013-02-25 09:26:52 -08:00
|
|
|
</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>
|
2018-05-07 17:16:45 +02:00
|
|
|
<groupId>org.lz4</groupId>
|
|
|
|
<artifactId>lz4-java</artifactId>
|
|
|
|
<version>1.4.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>
|
2016-12-16 17:15:59 -08:00
|
|
|
<version>3.1.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>
|
2016-02-27 01:47:01 +05:30
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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 11:31:54 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2018-03-21 15:36:54 -07:00
|
|
|
<version>4.5.3</version>
|
2013-11-13 11:31:54 -08:00
|
|
|
</dependency>
|
2013-11-13 13:06:34 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
2018-03-21 15:36:54 -07:00
|
|
|
<version>4.4.4</version>
|
2013-11-13 13:06:34 -08:00
|
|
|
</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>
|
2017-11-21 05:29:17 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-10-09 15:15:41 -05:00
|
|
|
</dependency>
|
2014-09-09 15:59:33 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapdb</groupId>
|
|
|
|
<artifactId>mapdb</artifactId>
|
2015-08-25 12:51:28 -07:00
|
|
|
<version>1.0.8</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>
|
2016-05-17 09:56:00 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-math3</artifactId>
|
|
|
|
<version>3.6.1</version>
|
|
|
|
</dependency>
|
2016-10-13 18:28:46 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.unimi.dsi</groupId>
|
|
|
|
<artifactId>fastutil</artifactId>
|
2017-10-20 13:37:43 +09:00
|
|
|
<version>8.1.0</version>
|
2016-10-13 18:28:46 +03:00
|
|
|
</dependency>
|
2016-12-08 11:30:19 -08:00
|
|
|
<dependency>
|
2018-08-26 22:00:14 -07:00
|
|
|
<groupId>com.opencsv</groupId>
|
2016-12-08 11:30:19 -08:00
|
|
|
<artifactId>opencsv</artifactId>
|
2018-08-26 22:00:14 -07:00
|
|
|
<version>4.2</version>
|
2016-12-08 11:30:19 -08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
2018-06-15 21:50:48 +01:00
|
|
|
<version>2.3.0</version>
|
2016-12-08 11:30:19 -08:00
|
|
|
</dependency>
|
2017-09-12 12:18:34 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.thisptr</groupId>
|
|
|
|
<artifactId>jackson-jq</artifactId>
|
|
|
|
<version>0.0.7</version>
|
|
|
|
</dependency>
|
2016-12-08 11:30:19 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.6.4</version>
|
|
|
|
</dependency>
|
2017-02-10 20:02:26 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.roaringbitmap</groupId>
|
|
|
|
<artifactId>RoaringBitmap</artifactId>
|
|
|
|
<version>0.5.18</version>
|
|
|
|
</dependency>
|
2017-03-17 13:44:36 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
<version>5.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-commons</artifactId>
|
|
|
|
<version>5.2</version>
|
|
|
|
</dependency>
|
2018-01-24 13:10:36 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.asynchttpclient</groupId>
|
|
|
|
<artifactId>async-http-client</artifactId>
|
|
|
|
<version>2.0.37</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gridkit.lab</groupId>
|
|
|
|
<artifactId>jvm-attach-api</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
2018-03-08 16:54:21 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
<version>4.5.1</version>
|
|
|
|
</dependency>
|
2018-06-05 09:08:57 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-core</artifactId>
|
|
|
|
<version>${dropwizard.metrics.version}</version>
|
|
|
|
</dependency>
|
2017-12-04 23:04:27 -03:00
|
|
|
|
|
|
|
<!-- Test Scope -->
|
2017-06-09 16:32:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
<version>1.9.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
<version>1.9.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-pool</groupId>
|
|
|
|
<artifactId>commons-pool</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
<version>3.0.15</version>
|
|
|
|
</dependency>
|
2016-12-16 17:15:59 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.calcite</groupId>
|
|
|
|
<artifactId>calcite-core</artifactId>
|
|
|
|
<version>${calcite.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2017-09-22 10:46:55 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
<version>${caffeine.version}</version>
|
|
|
|
</dependency>
|
2012-10-31 16:10:07 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
2017-03-14 21:23:47 -07:00
|
|
|
<version>3.4</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>
|
2016-12-23 20:04:27 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-easymock</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-03-24 10:53:31 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</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>
|
2017-09-15 10:48:32 -07:00
|
|
|
<version>${apache.curator.test.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>
|
2015-08-25 13:28:49 -07:00
|
|
|
<version>1.0-0014</version>
|
2016-02-27 01:47:01 +05:30
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-11-11 16:13:32 -08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.maxmind.geoip2</groupId>
|
|
|
|
<artifactId>geoip2</artifactId>
|
2016-03-25 14:24:58 -07:00
|
|
|
<version>0.4.0</version>
|
2013-11-11 16:13:32 -08:00
|
|
|
<exclusions>
|
2016-03-25 14:24:58 -07:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.http-client</groupId>
|
|
|
|
<artifactId>google-http-client</artifactId>
|
|
|
|
</exclusion>
|
2013-11-11 16:13:32 -08:00
|
|
|
<exclusion>
|
2016-11-16 16:36:45 +08:00
|
|
|
<groupId>com.google.http-client</groupId>
|
|
|
|
<artifactId>google-http-client-jackson2</artifactId>
|
2013-11-11 16:13:32 -08:00
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
2016-11-16 16:36:45 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2013-11-11 16:13:32 -08:00
|
|
|
</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>
|
2016-01-21 13:54:37 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>pl.pragmatists</groupId>
|
|
|
|
<artifactId>JUnitParams</artifactId>
|
|
|
|
<version>1.0.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-12-07 17:49:16 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava-testlib</artifactId>
|
|
|
|
<version>${guava.version}</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>
|
2015-10-14 10:25:23 -07:00
|
|
|
<version>4.0.0</version>
|
2015-03-09 13:44:54 -07:00
|
|
|
</plugin>
|
2016-10-13 23:37:47 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>2.17</version>
|
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
<configLocation>codestyle/checkstyle.xml</configLocation>
|
|
|
|
<suppressionsLocation>codestyle/checkstyle-suppressions.xml</suppressionsLocation>
|
|
|
|
<suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression>
|
|
|
|
<encoding>UTF-8</encoding>
|
2017-01-11 11:13:47 +09:00
|
|
|
<headerLocation>codestyle/LICENSE.txt</headerLocation>
|
2016-10-13 23:37:47 +03:00
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
<failsOnError>true</failsOnError>
|
|
|
|
</configuration>
|
2016-11-05 11:34:36 -07:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2017-07-21 18:26:59 +03:00
|
|
|
<version>8.0</version>
|
2016-11-05 11:34:36 -07:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-10-13 23:37:47 +03:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-07-17 16:22:29 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
<version>3.8</version>
|
|
|
|
<configuration>
|
|
|
|
<printFailingErrors>true</printFailingErrors>
|
|
|
|
<rulesets>
|
|
|
|
<ruleset>/rulesets/java/imports.xml</ruleset>
|
|
|
|
</rulesets>
|
|
|
|
<excludeRoots>
|
|
|
|
<excludeRoot>target/generated-sources/</excludeRoot>
|
|
|
|
</excludeRoots>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-08-21 15:02:42 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>de.thetaphi</groupId>
|
|
|
|
<artifactId>forbiddenapis</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
2018-08-16 20:05:45 +02:00
|
|
|
<failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
|
2017-08-21 15:02:42 -05:00
|
|
|
<bundledSignatures>
|
|
|
|
<!--
|
|
|
|
This will automatically choose the right
|
|
|
|
signatures based on 'maven.compiler.target':
|
|
|
|
-->
|
|
|
|
<bundledSignature>jdk-unsafe</bundledSignature>
|
|
|
|
</bundledSignatures>
|
|
|
|
<signaturesFiles>
|
|
|
|
<signaturesFile>${session.executionRootDirectory}/codestyle/joda-time-forbidden-apis.txt</signaturesFile>
|
2017-09-27 08:49:47 -05:00
|
|
|
<signaturesFile>${session.executionRootDirectory}/codestyle/druid-forbidden-apis.txt</signaturesFile>
|
2017-08-21 15:02:42 -05:00
|
|
|
</signaturesFiles>
|
2017-09-27 15:46:44 -07:00
|
|
|
<excludes>
|
2018-08-30 09:56:26 -07:00
|
|
|
<exclude>org/apache/druid/java/util/common/DateTimes$UtcFormatter.class</exclude>
|
|
|
|
<exclude>org/apache/druid/java/util/common/DateTimes.class</exclude>
|
2017-09-27 15:46:44 -07:00
|
|
|
</excludes>
|
2017-08-21 15:02:42 -05:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<bundledSignatures>
|
|
|
|
<!-- Check jdk-system-out only for production code, but not in test code -->
|
|
|
|
<bundledSignature>jdk-unsafe</bundledSignature>
|
|
|
|
<bundledSignature>jdk-system-out</bundledSignature>
|
|
|
|
</bundledSignatures>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>testValidate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>testCheck</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-12-21 13:19:13 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
|
|
|
<version>1.15</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>check-java-api</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<signature>
|
|
|
|
<groupId>org.codehaus.mojo.signature
|
|
|
|
</groupId>
|
2017-03-14 21:23:47 -07:00
|
|
|
<artifactId>java18</artifactId>
|
2016-12-21 13:19:13 -05:00
|
|
|
<version>1.0</version>
|
|
|
|
</signature>
|
|
|
|
<ignores>
|
2017-03-17 13:44:36 -06:00
|
|
|
<!-- Some of our code uses sun.* classes directly, which are not part of
|
2016-12-21 13:19:13 -05:00
|
|
|
the JDK signature (although they are there anyway). -->
|
|
|
|
<ignore>sun.nio.ch.DirectBuffer</ignore>
|
|
|
|
<ignore>sun.misc.Cleaner</ignore>
|
2017-03-17 13:44:36 -06:00
|
|
|
<ignore>sun.misc.Unsafe</ignore>
|
2016-12-21 13:19:13 -05:00
|
|
|
</ignores>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-01-19 11:49:08 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>1.4.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-banned-dependencies</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
2017-02-14 12:51:51 -08:00
|
|
|
<requireJavaVersion>
|
|
|
|
<version>1.8.0</version>
|
|
|
|
</requireJavaVersion>
|
2017-01-19 11:49:08 -08:00
|
|
|
<bannedDependencies>
|
|
|
|
<excludes>
|
|
|
|
<!--LGPL licenced library-->
|
|
|
|
<exclude>com.google.code.findbugs:annotations</exclude>
|
|
|
|
</excludes>
|
|
|
|
</bannedDependencies>
|
|
|
|
</rules>
|
|
|
|
<fail>true</fail>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-03-09 13:44:54 -07:00
|
|
|
</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>
|
2016-12-15 14:05:56 +09:00
|
|
|
<version>2.19.1</version>
|
2015-02-03 16:48:00 -08:00
|
|
|
<configuration>
|
|
|
|
<!-- locale settings must be set on the command line before startup -->
|
2018-08-10 22:03:36 -07:00
|
|
|
<!-- set default options -->
|
|
|
|
<argLine>
|
|
|
|
-Xmx1500m
|
|
|
|
-XX:MaxDirectMemorySize=512m
|
|
|
|
-Duser.language=en
|
|
|
|
-Duser.GroupByQueryRunnerTest.javacountry=US
|
|
|
|
-Dfile.encoding=UTF-8
|
|
|
|
-Duser.timezone=UTC
|
|
|
|
-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager
|
2018-08-30 09:56:26 -07:00
|
|
|
<!--@TODO After fixing https://github.com/apache/incubator-druid/issues/4964 remove this parameter-->
|
2017-10-16 17:17:22 -07:00
|
|
|
-Ddruid.indexing.doubleStorage=double
|
2016-02-29 17:43:35 -08:00
|
|
|
</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>
|
2016-02-18 15:39:13 -06:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>install</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
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-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>
|
2015-12-16 01:03:10 -06:00
|
|
|
<version>4.5.1</version>
|
2013-02-25 09:26:52 -08:00
|
|
|
</plugin>
|
2013-05-01 17:31:29 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2015-08-18 11:28:30 -07:00
|
|
|
<version>2.5.5</version>
|
2013-05-01 17:31:29 -05:00
|
|
|
</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-12-03 14:06:22 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- jdk8 started linting javadocs by default; ours are not fully compliant -->
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
2017-02-08 11:54:41 -08:00
|
|
|
|
|
|
|
<!-- HadoopFsWrapper javadocs cannot be generated due to missing annotations -->
|
|
|
|
<excludePackageNames>org.apache.hadoop.fs</excludePackageNames>
|
2015-12-03 14:06:22 -08:00
|
|
|
</configuration>
|
|
|
|
</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>
|
2018-08-30 09:56:26 -07:00
|
|
|
<ignore>org.apache.druid.sql.antlr4.*</ignore>
|
2015-03-09 13:44:54 -07:00
|
|
|
</ignores>
|
|
|
|
<excludes>
|
2018-08-30 09:56:26 -07:00
|
|
|
<exclude>org/apache/druid/sql/antlr4/**/*.class</exclude>
|
2015-03-09 13:44:54 -07:00
|
|
|
</excludes>
|
|
|
|
</instrumentation>
|
|
|
|
<format>xml</format>
|
|
|
|
<!-- aggregated reports for multi-module projects -->
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-03-14 21:23:47 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2017-08-21 15:02:42 -05:00
|
|
|
<source>${maven.compiler.target}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2017-03-14 21:23:47 -07:00
|
|
|
</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>
|
2017-05-12 01:55:17 -05:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<compilerId>javac-with-errorprone</compilerId>
|
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
|
<fork>true</fork>
|
|
|
|
<meminitial>1024m</meminitial>
|
2017-05-21 03:42:44 +09:00
|
|
|
<maxmem>3000m</maxmem>
|
2017-08-21 15:02:42 -05:00
|
|
|
<source>${maven.compiler.target}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2017-05-12 01:55:17 -05:00
|
|
|
<showWarnings>false</showWarnings>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-XepDisableWarningsInGeneratedCode</arg>
|
2017-05-16 13:30:30 -05:00
|
|
|
|
2017-05-12 01:55:17 -05:00
|
|
|
<arg>-Xep:ClassCanBeStatic:ERROR</arg>
|
|
|
|
<arg>-Xep:PreconditionsInvalidPlaceholder:ERROR</arg>
|
2017-05-16 13:30:30 -05:00
|
|
|
<arg>-Xep:MissingOverride:ERROR</arg>
|
2017-06-06 01:57:25 -05:00
|
|
|
<arg>-Xep:DefaultCharset:ERROR</arg>
|
2017-05-16 13:30:30 -05:00
|
|
|
|
2017-05-12 01:55:17 -05:00
|
|
|
<arg>-Xep:ArgumentParameterSwap</arg>
|
|
|
|
<arg>-Xep:AssistedInjectAndInjectOnSameConstructor</arg>
|
|
|
|
<arg>-Xep:AutoFactoryAtInject</arg>
|
|
|
|
<arg>-Xep:ClassName</arg>
|
|
|
|
<arg>-Xep:ComparisonContractViolated</arg>
|
|
|
|
<arg>-Xep:DepAnn</arg>
|
|
|
|
<arg>-Xep:DivZero</arg>
|
|
|
|
<arg>-Xep:EmptyIf</arg>
|
|
|
|
<arg>-Xep:InjectInvalidTargetingOnScopingAnnotation</arg>
|
|
|
|
<arg>-Xep:InjectMoreThanOneQualifier</arg>
|
|
|
|
<arg>-Xep:InjectScopeAnnotationOnInterfaceOrAbstractClass</arg>
|
|
|
|
<arg>-Xep:InjectScopeOrQualifierAnnotationRetention</arg>
|
|
|
|
<arg>-Xep:InjectedConstructorAnnotations</arg>
|
|
|
|
<arg>-Xep:InsecureCryptoUsage</arg>
|
|
|
|
<arg>-Xep:JMockTestWithoutRunWithOrRuleAnnotation</arg>
|
|
|
|
<arg>-Xep:JavaxInjectOnFinalField</arg>
|
|
|
|
<arg>-Xep:LockMethodChecker</arg>
|
|
|
|
<arg>-Xep:LongLiteralLowerCaseSuffix</arg>
|
|
|
|
<arg>-Xep:NoAllocation</arg>
|
|
|
|
<arg>-Xep:NonRuntimeAnnotation</arg>
|
|
|
|
<arg>-Xep:NumericEquality</arg>
|
|
|
|
<arg>-Xep:ParameterPackage</arg>
|
|
|
|
<arg>-Xep:ProtoStringFieldReferenceEquality</arg>
|
|
|
|
<arg>-Xep:QualifierOnMethodWithoutProvides</arg>
|
|
|
|
<arg>-Xep:UnlockMethod</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-compiler-javac-errorprone</artifactId>
|
|
|
|
<version>2.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- override plexus-compiler-javac-errorprone's dependency on
|
|
|
|
Error Prone with the latest version -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.errorprone</groupId>
|
|
|
|
<artifactId>error_prone_core</artifactId>
|
|
|
|
<version>2.0.19</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2015-04-08 14:11:44 -07:00
|
|
|
</build>
|
|
|
|
</profile>
|
2016-12-15 14:05:56 +09:00
|
|
|
<profile>
|
|
|
|
<id>parallel-test</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration combine.self="override">
|
|
|
|
<forkCount>${maven.fork.count}</forkCount>
|
|
|
|
<reuseForks>true</reuseForks>
|
|
|
|
<trimStackTrace>false</trimStackTrace>
|
|
|
|
<!-- locale settings must be set on the command line before startup -->
|
|
|
|
<!-- set heap size to work around https://github.com/travis-ci/travis-ci/issues/3396 -->
|
2017-09-06 02:51:06 -07:00
|
|
|
<argLine>-Xmx768m -Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8
|
2017-10-16 17:17:22 -07:00
|
|
|
-Duser.timezone=UTC -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager
|
2018-08-30 09:56:26 -07:00
|
|
|
<!--@TODO After fixing https://github.com/apache/incubator-druid/issues/4964 remove this parameter-->
|
2017-10-16 17:17:22 -07:00
|
|
|
-Ddruid.indexing.doubleStorage=double
|
2016-12-15 14:05:56 +09:00
|
|
|
</argLine>
|
|
|
|
<!-- our tests are very verbose, let's keep the volume down -->
|
|
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2015-04-08 14:11:44 -07:00
|
|
|
</profiles>
|
2012-10-24 03:39:51 -04:00
|
|
|
</project>
|