mirror of https://github.com/apache/druid.git
205 lines
7.4 KiB
XML
205 lines
7.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>
|
||
|
<groupId>com.metamx.druid</groupId>
|
||
|
<artifactId>druid-realtime</artifactId>
|
||
|
<version>0.1.0-SNAPSHOT</version>
|
||
|
<name>druid-realtime</name>
|
||
|
<description>druid-realtime</description>
|
||
|
<scm>
|
||
|
<connection>scm:git:ssh://git@github.com/metamx/druid.git</connection>
|
||
|
<developerConnection>scm:git:ssh://git@github.com/metamx/druid.git</developerConnection>
|
||
|
<url>http://www.github.com/metamx/druid</url>
|
||
|
</scm>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.metamx</groupId>
|
||
|
<artifactId>druid</artifactId>
|
||
|
<version>0.1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<properties>
|
||
|
<scala.version>2.8.2</scala.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.metamx.druid</groupId>
|
||
|
<artifactId>druid-server</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.metamx.druid</groupId>
|
||
|
<artifactId>druid-client</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.scala-lang</groupId>
|
||
|
<artifactId>scala-library</artifactId>
|
||
|
<version>${scala.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.scala-lang</groupId>
|
||
|
<artifactId>scala-compiler</artifactId>
|
||
|
<version>${scala.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>kafka</groupId>
|
||
|
<artifactId>core-kafka</artifactId>
|
||
|
<version>0.6-mmx11</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>log4j</groupId>
|
||
|
<artifactId>log4j</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.directory.studio</groupId>
|
||
|
<artifactId>org.apache.commons.collections</artifactId>
|
||
|
<version>3.2.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Override deps so that our jackson is compatible with druid-server -->
|
||
|
<dependency>
|
||
|
<groupId>com.codahale</groupId>
|
||
|
<artifactId>jerkson_${scala.version}</artifactId>
|
||
|
<version>0.5.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Dependencies required for jets3t b/c emr pom doesn't include them -->
|
||
|
<dependency>
|
||
|
<groupId>commons-codec</groupId>
|
||
|
<artifactId>commons-codec</artifactId>
|
||
|
<version>1.3</version>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
<version>1.1.1</version>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-httpclient</groupId>
|
||
|
<artifactId>commons-httpclient</artifactId>
|
||
|
<version>3.1</version>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jamesmurty.utils</groupId>
|
||
|
<artifactId>java-xmlbuilder</artifactId>
|
||
|
<version>0.4</version>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<!-- Dependencies required for jets3t -->
|
||
|
|
||
|
<!-- Tests -->
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.8.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.easymock</groupId>
|
||
|
<artifactId>easymock</artifactId>
|
||
|
<version>3.0</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.metamx.druid</groupId>
|
||
|
<artifactId>druid-server</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
<type>test-jar</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>2.3.2</version>
|
||
|
<configuration>
|
||
|
<source>1.6</source>
|
||
|
<target>1.6</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>1.6</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<outputFile>
|
||
|
${project.build.directory}/${project.artifactId}-${project.version}-selfcontained.jar
|
||
|
</outputFile>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
<version>2.2</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-help-plugin</artifactId>
|
||
|
<version>2.1.1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.scala-tools</groupId>
|
||
|
<artifactId>maven-scala-plugin</artifactId>
|
||
|
<version>2.15.2</version>
|
||
|
<configuration>
|
||
|
<args>
|
||
|
<arg>-unchecked</arg>
|
||
|
<arg>-deprecation</arg>
|
||
|
</args>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>compile</id>
|
||
|
<goals>
|
||
|
<goal>compile</goal>
|
||
|
</goals>
|
||
|
<phase>compile</phase>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>test-compile</id>
|
||
|
<goals>
|
||
|
<goal>testCompile</goal>
|
||
|
</goals>
|
||
|
<phase>test-compile</phase>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>compile</goal>
|
||
|
</goals>
|
||
|
<phase>process-resources</phase>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.7.2</version>
|
||
|
<configuration>
|
||
|
<systemPropertyVariables>
|
||
|
<user.timezone>UTC</user.timezone>
|
||
|
</systemPropertyVariables>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|