pom.xml 5.4 KB
Newer Older
E
Eric Tschetter 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
E
Eric Tschetter 已提交
2 3
<!--
  ~ Druid - a distributed column store.
F
fjy 已提交
4
  ~ Copyright 2012 - 2015 Metamarkets Group Inc.
E
Eric Tschetter 已提交
5
  ~
F
fjy 已提交
6 7 8
  ~ 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
E
Eric Tschetter 已提交
9
  ~
F
fjy 已提交
10
  ~     http://www.apache.org/licenses/LICENSE-2.0
E
Eric Tschetter 已提交
11
  ~
F
fjy 已提交
12 13 14 15 16
  ~ 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.
E
Eric Tschetter 已提交
17 18
  -->

19
<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 已提交
20
    <modelVersion>4.0.0</modelVersion>
21
    <groupId>io.druid</groupId>
E
Eric Tschetter 已提交
22 23 24 25 26
    <artifactId>druid-common</artifactId>
    <name>druid-common</name>
    <description>druid-common</description>

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

    <dependencies>
        <dependency>
            <groupId>com.metamx</groupId>
            <artifactId>java-util</artifactId>
        </dependency>
37 38 39 40
        <dependency>
            <groupId>io.druid</groupId>
            <artifactId>druid-api</artifactId>
        </dependency>
41

E
Eric Tschetter 已提交
42
        <dependency>
43 44
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
E
Eric Tschetter 已提交
45 46
        </dependency>
        <dependency>
47 48 49
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.4</version>
E
Eric Tschetter 已提交
50 51
        </dependency>
        <dependency>
52 53 54
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
            <version>1.6</version>
E
Eric Tschetter 已提交
55 56
        </dependency>
        <dependency>
57 58
            <groupId>org.skife.config</groupId>
            <artifactId>config-magic</artifactId>
E
Eric Tschetter 已提交
59
        </dependency>
60 61 62
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
C
cheddar 已提交
63 64 65 66
        </dependency>
        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
67
        </dependency>
E
Eric Tschetter 已提交
68
        <dependency>
69 70 71 72
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
73 74
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
75 76
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
77 78 79 80
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </dependency>
        <dependency>
81 82 83 84 85 86
          <groupId>com.fasterxml.jackson.datatype</groupId>
          <artifactId>jackson-datatype-guava</artifactId>
        </dependency>
        <dependency>
          <groupId>com.fasterxml.jackson.datatype</groupId>
          <artifactId>jackson-datatype-joda</artifactId>
E
Eric Tschetter 已提交
87
        </dependency>
88 89 90 91 92 93 94 95
        <dependency>
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-smile</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
        </dependency>
96 97 98 99
        <dependency>
            <groupId>com.google.inject.extensions</groupId>
            <artifactId>guice-multibindings</artifactId>
        </dependency>
E
Eric Tschetter 已提交
100 101 102 103 104
        <dependency>
            <groupId>org.jdbi</groupId>
            <artifactId>jdbi</artifactId>
        </dependency>
        <dependency>
105 106
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
E
Eric Tschetter 已提交
107 108
        </dependency>
        <dependency>
109 110
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
E
Eric Tschetter 已提交
111 112
        </dependency>
        <dependency>
113 114
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
E
Eric Tschetter 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
        </dependency>

        <!-- Tests -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.metamx</groupId>
            <artifactId>java-util</artifactId>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
147 148 149 150 151 152 153 154 155
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
E
Eric Tschetter 已提交
156 157 158
        </plugins>
    </build>
</project>