2015-03-17 19:08:42 -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-03-17 19:08:42 -04:00
|
|
|
-->
|
|
|
|
|
2019-11-28 02:22:43 -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-03-17 19:08:42 -04:00
|
|
|
<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.contrib</groupId>
|
2015-03-17 19:08:42 -04:00
|
|
|
<artifactId>druid-azure-extensions</artifactId>
|
|
|
|
<name>druid-azure-extensions</name>
|
|
|
|
<description>druid-azure-extensions</description>
|
|
|
|
|
|
|
|
<parent>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2015-03-17 19:08:42 -04:00
|
|
|
<artifactId>druid</artifactId>
|
2020-01-02 17:55:10 -05:00
|
|
|
<version>0.18.0-SNAPSHOT</version>
|
2015-03-17 19:08:42 -04:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<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>
|
2016-02-26 15:17:01 -05:00
|
|
|
<scope>provided</scope>
|
2015-03-17 19:08:42 -04:00
|
|
|
</dependency>
|
|
|
|
|
2016-01-05 19:42:05 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure</groupId>
|
|
|
|
<artifactId>azure-storage</artifactId>
|
2020-02-03 12:40:00 -05:00
|
|
|
<version>8.6.0</version>
|
2016-02-26 15:17:01 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</exclusion>
|
2020-02-03 12:40:00 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</exclusion>
|
2016-02-26 15:17:01 -05:00
|
|
|
</exclusions>
|
2016-01-05 19:42:05 -05:00
|
|
|
</dependency>
|
2017-10-12 03:14:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
<artifactId>jackson-module-guice</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
2020-02-03 12:40:00 -05:00
|
|
|
<scope>provided</scope>
|
2017-10-12 03:14:45 -04:00
|
|
|
</dependency>
|
2019-09-09 17:37:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
2020-02-03 12:40:00 -05:00
|
|
|
<scope>provided</scope>
|
2019-09-09 17:37:21 -04:00
|
|
|
</dependency>
|
2020-02-11 20:41:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-assistedinject</artifactId>
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
</dependency>
|
2019-09-09 17:37:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-multibindings</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2020-02-03 12:40:00 -05:00
|
|
|
<scope>provided</scope>
|
2019-09-09 17:37:21 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-02-11 20:41:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-03-17 19:08:42 -04:00
|
|
|
|
|
|
|
<!-- Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-01-05 19:42:05 -05:00
|
|
|
<dependency>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2016-01-05 19:42:05 -05:00
|
|
|
<artifactId>druid-server</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-09-09 17:37:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.druid</groupId>
|
|
|
|
<artifactId>druid-processing</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-03-17 19:08:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-02-11 20:41:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>nl.jqno.equalsverifier</groupId>
|
|
|
|
<artifactId>equalsverifier</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-03-17 19:08:42 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2020-02-03 12:40:00 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.8.4</version>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<!-- Ignore firehose code -->
|
|
|
|
<exclude>org/apache/druid/firehose/azure/**/*</exclude> <!-- integration-tests -->
|
|
|
|
</excludes>
|
|
|
|
<rules>
|
|
|
|
<rule>
|
|
|
|
<element>BUNDLE</element>
|
|
|
|
<limits>
|
|
|
|
<limit>
|
|
|
|
<counter>INSTRUCTION</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
2020-02-11 20:41:58 -05:00
|
|
|
<minimum>0.84</minimum>
|
2020-02-03 12:40:00 -05:00
|
|
|
</limit>
|
|
|
|
<limit>
|
|
|
|
<counter>LINE</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
2020-02-11 20:41:58 -05:00
|
|
|
<minimum>0.84</minimum>
|
2020-02-03 12:40:00 -05:00
|
|
|
</limit>
|
|
|
|
<limit>
|
|
|
|
<counter>BRANCH</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
2020-02-11 20:41:58 -05:00
|
|
|
<minimum>0.86</minimum>
|
2020-02-03 12:40:00 -05:00
|
|
|
</limit>
|
|
|
|
<limit>
|
|
|
|
<counter>COMPLEXITY</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
2020-02-11 20:41:58 -05:00
|
|
|
<minimum>0.80</minimum>
|
2020-02-03 12:40:00 -05:00
|
|
|
</limit>
|
|
|
|
<limit>
|
|
|
|
<counter>METHOD</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
2020-02-11 20:41:58 -05:00
|
|
|
<minimum>0.79</minimum>
|
2020-02-03 12:40:00 -05:00
|
|
|
</limit>
|
|
|
|
<limit>
|
|
|
|
<counter>CLASS</counter>
|
|
|
|
<value>COVEREDRATIO</value>
|
2020-02-11 20:41:58 -05:00
|
|
|
<minimum>0.90</minimum>
|
2020-02-03 12:40:00 -05:00
|
|
|
</limit>
|
|
|
|
</limits>
|
|
|
|
</rule>
|
2020-02-11 20:41:58 -05:00
|
|
|
</rules>
|
2020-02-03 12:40:00 -05:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
2020-02-11 20:41:58 -05:00
|
|
|
</execution>
|
2020-02-03 12:40:00 -05:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-03-17 19:08:42 -04:00
|
|
|
</project>
|