2013-08-29 18:23:16 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ Druid - a distributed column store.
|
|
|
|
~ Copyright (C) 2012, 2013 Metamarkets Group Inc.
|
|
|
|
~
|
|
|
|
~ This program is free software; you can redistribute it and/or
|
|
|
|
~ modify it under the terms of the GNU General Public License
|
|
|
|
~ as published by the Free Software Foundation; either version 2
|
|
|
|
~ of the License, or (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program; if not, write to the Free Software
|
|
|
|
~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
-->
|
|
|
|
|
2014-10-23 20:24:06 -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">
|
2013-08-29 18:23:16 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-10-09 18:42:39 -04:00
|
|
|
<groupId>io.druid</groupId>
|
2013-08-30 19:20:34 -04:00
|
|
|
<artifactId>druid-processing</artifactId>
|
|
|
|
<name>druid-processing</name>
|
2013-08-29 18:23:16 -04:00
|
|
|
<description>A module that is everything required to understands Druid Segments</description>
|
|
|
|
|
|
|
|
<parent>
|
2013-10-11 21:38:53 -04:00
|
|
|
<groupId>io.druid</groupId>
|
2013-08-29 18:23:16 -04:00
|
|
|
<artifactId>druid</artifactId>
|
2014-10-23 20:24:06 -04:00
|
|
|
<version>0.7.0-SNAPSHOT</version>
|
2013-08-29 18:23:16 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2013-10-09 18:42:39 -04:00
|
|
|
<groupId>io.druid</groupId>
|
2013-08-30 19:20:34 -04:00
|
|
|
<artifactId>druid-common</artifactId>
|
2013-08-29 18:23:16 -04:00
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
</dependency>
|
2013-08-30 19:58:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>bytebuffer-collections</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.metamx</groupId>
|
|
|
|
<artifactId>emitter</artifactId>
|
|
|
|
</dependency>
|
2013-08-29 18:23:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ning</groupId>
|
|
|
|
<artifactId>compress-lzf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.skife.config</groupId>
|
|
|
|
<artifactId>config-magic</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.uniroma3.mat</groupId>
|
|
|
|
<artifactId>extendedset</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</dependency>
|
2013-08-30 19:20:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ibm.icu</groupId>
|
|
|
|
<artifactId>icu4j</artifactId>
|
|
|
|
</dependency>
|
2013-12-30 18:26:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mozilla</groupId>
|
|
|
|
<artifactId>rhino</artifactId>
|
|
|
|
<version>1.7R4</version>
|
|
|
|
</dependency>
|
2014-04-28 12:42:43 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.davekoelle</groupId>
|
|
|
|
<artifactId>alphanum</artifactId>
|
|
|
|
</dependency>
|
2014-10-23 20:24:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.jpountz.lz4</groupId>
|
|
|
|
<artifactId>lz4</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapdb</groupId>
|
|
|
|
<artifactId>mapdb</artifactId>
|
|
|
|
</dependency>
|
2013-08-30 19:20:34 -04:00
|
|
|
|
2013-08-29 18:23:16 -04:00
|
|
|
|
|
|
|
<!-- Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-10-23 20:24:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.caliper</groupId>
|
|
|
|
<artifactId>caliper</artifactId>
|
|
|
|
</dependency>
|
2013-08-29 18:23:16 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2013-12-03 23:51:19 -05:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
2013-08-29 18:23:16 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|