2016-08-04 20:32:58 -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
|
2016-08-04 20:32:58 -04:00
|
|
|
~ distributed with this work for additional information
|
2018-07-11 12:55:18 -04:00
|
|
|
~ regarding copyright ownership. The ASF licenses this file
|
2016-08-04 20:32:58 -04:00
|
|
|
~ to you under the Apache License, Version 2.0 (the
|
|
|
|
~ "License"); you may not use this file except in compliance
|
2018-07-11 12:55:18 -04:00
|
|
|
~ with the License. You may obtain a copy of the License at
|
2016-08-04 20:32:58 -04:00
|
|
|
~
|
2018-07-11 12:55:18 -04:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2016-08-04 20:32:58 -04: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
|
2018-07-11 12:55:18 -04:00
|
|
|
~ KIND, either express or implied. See the License for the
|
2016-08-04 20:32:58 -04:00
|
|
|
~ specific language governing permissions and limitations
|
|
|
|
~ under the License.
|
2018-07-11 12:55:18 -04:00
|
|
|
-->
|
2016-08-04 20:32:58 -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>
|
|
|
|
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid.extensions</groupId>
|
2016-08-04 20:32:58 -04:00
|
|
|
<artifactId>druid-stats</artifactId>
|
|
|
|
<name>druid-stats</name>
|
|
|
|
<description>druid-stats</description>
|
|
|
|
|
|
|
|
<parent>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2016-08-04 20:32:58 -04:00
|
|
|
<artifactId>druid</artifactId>
|
2018-10-11 22:28:01 -04:00
|
|
|
<version>0.13.0-incubating-SNAPSHOT</version>
|
2016-08-04 20:32:58 -04:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2016-08-04 20:32:58 -04:00
|
|
|
<artifactId>druid-processing</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-10-10 02:43:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-math3</artifactId>
|
|
|
|
</dependency>
|
2016-08-04 20:32:58 -04:00
|
|
|
|
|
|
|
<!-- Tests -->
|
2018-08-11 01:03:36 -04:00
|
|
|
<dependency>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2018-08-11 01:03:36 -04:00
|
|
|
<artifactId>druid-common</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2016-08-04 20:32:58 -04:00
|
|
|
<dependency>
|
2018-08-30 12:56:26 -04:00
|
|
|
<groupId>org.apache.druid</groupId>
|
2016-08-04 20:32:58 -04:00
|
|
|
<artifactId>druid-processing</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|