pom.xml 3.6 KB
Newer Older
E
Eric Tschetter 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
E
Eric Tschetter 已提交
2 3
<!--
  ~ Druid - a distributed column store.
4
  ~ Copyright (C) 2012, 2013  Metamarkets Group Inc.
E
Eric Tschetter 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
  ~
  ~ 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.
  -->

21
<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">
E
Eric Tschetter 已提交
22
    <modelVersion>4.0.0</modelVersion>
23
    <groupId>io.druid</groupId>
F
fjy 已提交
24 25 26
    <artifactId>druid-indexing-service</artifactId>
    <name>druid-indexing-service</name>
    <description>druid-indexing-service</description>
E
Eric Tschetter 已提交
27 28

    <parent>
29
        <groupId>io.druid</groupId>
E
Eric Tschetter 已提交
30
        <artifactId>druid</artifactId>
31
        <version>0.6.168-SNAPSHOT</version>
E
Eric Tschetter 已提交
32 33 34
    </parent>

    <dependencies>
35
        <dependency>
36
            <groupId>io.druid</groupId>
37 38 39
            <artifactId>druid-common</artifactId>
            <version>${project.parent.version}</version>
        </dependency>
E
Eric Tschetter 已提交
40
        <dependency>
41
            <groupId>io.druid</groupId>
E
Eric Tschetter 已提交
42 43 44
            <artifactId>druid-server</artifactId>
            <version>${project.parent.version}</version>
        </dependency>
45
        <dependency>
46
            <groupId>io.druid</groupId>
F
fjy 已提交
47
            <artifactId>druid-indexing-hadoop</artifactId>
E
Eric Tschetter 已提交
48 49
            <version>${project.parent.version}</version>
        </dependency>
50
        <dependency>
X
Xavier Léauté 已提交
51 52 53
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.18</version>
54
        </dependency>
55 56 57 58 59
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>9.3-1102-jdbc41</version>
        </dependency>
60

E
Eric Tschetter 已提交
61 62 63 64 65 66 67 68 69 70 71
        <!-- Tests -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <scope>test</scope>
        </dependency>
72
        <dependency>
73
            <groupId>org.apache.curator</groupId>
74
            <artifactId>curator-test</artifactId>
75
            <scope>test</scope>
76
        </dependency>
77 78
        <dependency>
            <groupId>org.apache.hadoop</groupId>
N
nishantmonu51 已提交
79
            <artifactId>hadoop-client</artifactId>
80 81
            <scope>test</scope>
        </dependency>
E
Eric Tschetter 已提交
82
    </dependencies>
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>
E
Eric Tschetter 已提交
99
</project>