2015-10-25 09:17:31 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2018-07-11 12:55:18 -04: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
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ 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.
|
2015-10-25 09:17:31 -04: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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-02-29 20:43:35 -05:00
|
|
|
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid.extensions</groupId>
|
2015-10-25 09:17:31 -04:00
|
|
|
<artifactId>druid-avro-extensions</artifactId>
|
|
|
|
<name>druid-avro-extensions</name>
|
|
|
|
<description>druid-avro-extensions</description>
|
|
|
|
|
|
|
|
<parent>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2015-10-25 09:17:31 -04:00
|
|
|
<artifactId>druid</artifactId>
|
2018-10-11 22:28:01 -04:00
|
|
|
<version>0.13.0-incubating-SNAPSHOT</version>
|
2015-10-25 09:17:31 -04:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<schemarepo.version>0.1.3</schemarepo.version>
|
2016-11-08 17:10:45 -05:00
|
|
|
<confluent.version>3.0.1</confluent.version>
|
2017-11-20 23:29:17 -05:00
|
|
|
<avro.version>1.8.2</avro.version>
|
2017-11-02 11:08:41 -04:00
|
|
|
<pig.version>0.15.0</pig.version>
|
2015-10-25 09:17:31 -04:00
|
|
|
</properties>
|
|
|
|
|
2016-11-08 17:10:45 -05:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>confluent</id>
|
|
|
|
<url>http://packages.confluent.io/maven/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2015-10-25 09:17:31 -04:00
|
|
|
<dependencies>
|
2017-11-20 23:29:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro</artifactId>
|
|
|
|
<version>${avro.version}</version>
|
2018-10-12 19:25:39 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-11-20 23:29:17 -05:00
|
|
|
</dependency>
|
2015-10-25 09:17:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro-mapred</artifactId>
|
|
|
|
<classifier>hadoop2</classifier>
|
|
|
|
<version>${avro.version}</version>
|
2018-10-12 19:25:39 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-10-25 09:17:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2018-10-14 23:37:37 -04:00
|
|
|
<artifactId>druid-core</artifactId>
|
2016-03-24 13:53:31 -04:00
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>provided</scope>
|
2015-10-25 09:17:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.schemarepo</groupId>
|
|
|
|
<artifactId>schema-repo-api</artifactId>
|
|
|
|
<version>${schemarepo.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.schemarepo</groupId>
|
|
|
|
<artifactId>schema-repo-client</artifactId>
|
|
|
|
<version>${schemarepo.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.schemarepo</groupId>
|
|
|
|
<artifactId>schema-repo-avro</artifactId>
|
|
|
|
<version>${schemarepo.version}</version>
|
|
|
|
</dependency>
|
2016-11-08 17:10:45 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.confluent</groupId>
|
|
|
|
<artifactId>kafka-schema-registry-client</artifactId>
|
|
|
|
<version>${confluent.version}</version>
|
2017-05-12 02:59:14 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
2018-10-12 19:25:39 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</exclusion>
|
2017-05-12 02:59:14 -04:00
|
|
|
</exclusions>
|
2016-11-08 17:10:45 -05:00
|
|
|
</dependency>
|
2015-10-25 09:17:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-11-08 17:10:45 -05:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>2.2.10</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-10-25 09:17:31 -04:00
|
|
|
<groupId>org.apache.pig</groupId>
|
|
|
|
<artifactId>pig</artifactId>
|
2017-11-02 11:08:41 -04:00
|
|
|
<version>${pig.version}</version>
|
2015-10-25 09:17:31 -04:00
|
|
|
<classifier>h2</classifier>
|
|
|
|
<scope>test</scope>
|
2017-06-09 17:32:07 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-net</groupId>
|
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
|
</exclusion>
|
2018-10-12 19:25:39 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
</exclusion>
|
2017-06-09 17:32:07 -04:00
|
|
|
</exclusions>
|
2015-10-25 09:17:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.pig</groupId>
|
|
|
|
<artifactId>piggybank</artifactId>
|
2017-11-02 11:08:41 -04:00
|
|
|
<version>${pig.version}</version>
|
2015-10-25 09:17:31 -04:00
|
|
|
<scope>test</scope>
|
2017-06-09 17:32:07 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.pig</groupId>
|
|
|
|
<artifactId>pig</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-10-25 09:17:31 -04:00
|
|
|
</dependency>
|
2016-08-10 13:49:26 -04:00
|
|
|
<dependency>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2016-08-10 13:49:26 -04:00
|
|
|
<artifactId>druid-processing</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-10-25 09:17:31 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
<artifactId>avro-maven-plugin</artifactId>
|
|
|
|
<version>${avro.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>schema</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-05-16 14:30:30 -04:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>strict</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgs>
|
|
|
|
<!-- Avro-generated classes miss @Override, that is not easy to fix -->
|
|
|
|
<arg>-Xep:MissingOverride:WARN</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2015-10-25 09:17:31 -04:00
|
|
|
</project>
|