mirror of https://github.com/apache/nifi.git
182 lines
7.7 KiB
XML
182 lines
7.7 KiB
XML
<!--
|
|
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.
|
|
-->
|
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-nar-bundles</artifactId>
|
|
<version>1.16.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>nifi-druid-bundle</artifactId>
|
|
<version>1.16.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<druid.version>0.9.1</druid.version>
|
|
<tranquility.version>0.8.3</tranquility.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.druid</groupId>
|
|
<artifactId>tranquility-core_2.11</artifactId>
|
|
<version>${tranquility.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>io.druid</groupId>
|
|
<artifactId>druid-console</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.druid</groupId>
|
|
<artifactId>druid-aws-common</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>c3p0</groupId>
|
|
<artifactId>c3p0</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.tesla.aether</groupId>
|
|
<artifactId>tesla-aether</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.glassfish</groupId>
|
|
<artifactId>javax.el</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.eclipse.aether</groupId>
|
|
<artifactId>aether-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.maxmind.geoip2</groupId>
|
|
<artifactId>geoip2</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>net.java.dev.jets3t</groupId>
|
|
<artifactId>jets3t</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.druid</groupId>
|
|
<artifactId>druid-server</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.druid</groupId>
|
|
<artifactId>druid-processing</artifactId>
|
|
<version>${druid.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>net.java.dev.jets3t</groupId>
|
|
<artifactId>jets3t</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>airline</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- Override commons-io:2.4 from druid -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.10.0</version>
|
|
</dependency>
|
|
<!-- Override jackson 2.4.6 from druid -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<!-- Override jackson 2.4.5 from tranquility -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
<artifactId>jackson-module-scala_2.11</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<!-- Override snakeyaml:1.11 from druid -->
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>1.29</version>
|
|
</dependency>
|
|
<!-- Override zookeeper -->
|
|
<dependency>
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
<artifactId>zookeeper</artifactId>
|
|
<version>3.4.14</version>
|
|
</dependency>
|
|
<!-- Override Netty 3 -->
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty</artifactId>
|
|
<version>${netty.3.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<modules>
|
|
<module>nifi-druid-nar</module>
|
|
<module>nifi-druid-controller-service-api-nar</module>
|
|
<module>nifi-druid-controller-service-api</module>
|
|
<module>nifi-druid-controller-service</module>
|
|
<module>nifi-druid-processors</module>
|
|
</modules>
|
|
</project>
|