2013-11-11 17:29:11 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ Druid - a distributed column store.
|
2015-01-30 23:36:38 -05:00
|
|
|
~ Copyright 2012 - 2015 Metamarkets Group Inc.
|
2013-11-11 17:29:11 -05:00
|
|
|
~
|
2015-01-30 23:36:38 -05: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
|
2013-11-11 17:29:11 -05:00
|
|
|
~
|
2015-01-30 23:36:38 -05:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2013-11-11 17:29:11 -05:00
|
|
|
~
|
2015-01-30 23:36:38 -05: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.
|
2013-11-11 17:29:11 -05:00
|
|
|
-->
|
|
|
|
|
2015-02-23 17:27:58 -05: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">
|
2015-02-03 19:48:00 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-11-11 17:29:11 -05:00
|
|
|
|
2015-02-03 19:48:00 -05:00
|
|
|
<groupId>io.druid.extensions</groupId>
|
|
|
|
<artifactId>druid-kafka-eight</artifactId>
|
|
|
|
<name>druid-kafka-eight</name>
|
|
|
|
<description>druid-kafka-eight</description>
|
2013-11-11 17:29:11 -05:00
|
|
|
|
2015-02-03 19:48:00 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>io.druid</groupId>
|
|
|
|
<artifactId>druid</artifactId>
|
2016-06-13 16:10:38 -04:00
|
|
|
<version>0.9.2-SNAPSHOT</version>
|
2015-02-03 19:48:00 -05:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
2013-11-11 17:29:11 -05:00
|
|
|
|
2015-02-03 19:48:00 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.druid</groupId>
|
|
|
|
<artifactId>druid-api</artifactId>
|
2016-03-24 13:53:31 -04:00
|
|
|
<version>${project.parent.version}</version>
|
2016-02-26 15:17:01 -05:00
|
|
|
<scope>provided</scope>
|
2015-02-03 19:48:00 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
2015-02-13 17:36:55 -05:00
|
|
|
<artifactId>kafka_2.10</artifactId>
|
2015-03-12 12:54:52 -04:00
|
|
|
<version>0.8.2.1</version>
|
2016-02-26 15:17:01 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.jpountz.lz4</groupId>
|
|
|
|
<artifactId>lz4</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-02-03 19:48:00 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-12-03 23:51:19 -05:00
|
|
|
|
2013-11-11 17:29:11 -05:00
|
|
|
</project>
|