pom.xml 5.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>
E
Eric Tschetter 已提交
24 25 26 27 28
    <artifactId>druid-common</artifactId>
    <name>druid-common</name>
    <description>druid-common</description>

    <parent>
29
        <groupId>io.druid</groupId>
E
Eric Tschetter 已提交
30
        <artifactId>druid</artifactId>
31
        <version>0.6.160</version>
E
Eric Tschetter 已提交
32 33 34 35 36 37 38
    </parent>

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

E
Eric Tschetter 已提交
44
        <dependency>
45 46
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
E
Eric Tschetter 已提交
47 48
        </dependency>
        <dependency>
49 50 51
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.4</version>
E
Eric Tschetter 已提交
52 53
        </dependency>
        <dependency>
54 55 56
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
            <version>1.6</version>
E
Eric Tschetter 已提交
57 58
        </dependency>
        <dependency>
59 60
            <groupId>org.skife.config</groupId>
            <artifactId>config-magic</artifactId>
E
Eric Tschetter 已提交
61
        </dependency>
62 63 64
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
C
cheddar 已提交
65 66 67 68
        </dependency>
        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
69
        </dependency>
E
Eric Tschetter 已提交
70
        <dependency>
71 72 73 74
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
75 76
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
77 78
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
79 80 81 82
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </dependency>
        <dependency>
83 84 85 86 87 88
          <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 已提交
89
        </dependency>
90 91 92 93 94 95 96 97
        <dependency>
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-smile</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
        </dependency>
98 99 100 101
        <dependency>
            <groupId>com.google.inject.extensions</groupId>
            <artifactId>guice-multibindings</artifactId>
        </dependency>
E
Eric Tschetter 已提交
102 103 104 105 106
        <dependency>
            <groupId>org.jdbi</groupId>
            <artifactId>jdbi</artifactId>
        </dependency>
        <dependency>
107 108
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
E
Eric Tschetter 已提交
109 110
        </dependency>
        <dependency>
111 112
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
E
Eric Tschetter 已提交
113 114
        </dependency>
        <dependency>
115 116
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
E
Eric Tschetter 已提交
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 147 148
        </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>
149 150 151 152 153 154 155 156 157
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
E
Eric Tschetter 已提交
158 159 160
        </plugins>
    </build>
</project>