druid/extensions-core/histogram/pom.xml

75 lines
2.6 KiB
XML
Raw Normal View History

2014-06-27 19:51:01 -04: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.
2014-06-27 19:51:01 -04: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
2014-06-27 19:51:01 -04:00
~
2015-01-30 23:36:38 -05:00
~ http://www.apache.org/licenses/LICENSE-2.0
2014-06-27 19:51:01 -04: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.
2014-06-27 19:51:01 -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>
2014-06-27 19:51:01 -04:00
<groupId>io.druid.extensions</groupId>
<artifactId>druid-histogram</artifactId>
<name>druid-histogram</name>
<description>druid-histogram</description>
2014-06-27 19:51:01 -04:00
<parent>
<groupId>io.druid</groupId>
<artifactId>druid</artifactId>
<version>0.11.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
2014-06-27 19:51:01 -04:00
<dependencies>
<dependency>
<groupId>io.druid</groupId>
<artifactId>druid-processing</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.druid</groupId>
<artifactId>druid-sql</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
<!-- Tests -->
<dependency>
<groupId>io.druid</groupId>
<artifactId>druid-processing</artifactId>
<version>${project.parent.version}</version>
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>io.druid</groupId>
<artifactId>druid-sql</artifactId>
<version>${project.parent.version}</version>
<type>test-jar</type>
<scope>test</scope>
</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>
2014-06-27 19:51:01 -04:00
</project>