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

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 23 24 25 26 27 28 29 30
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.metamx.druid</groupId>
    <artifactId>druid-client</artifactId>
    <name>druid-client</name>
    <description>druid-client</description>

    <parent>
        <groupId>com.metamx</groupId>
        <artifactId>druid</artifactId>
31
        <version>0.5.25</version>
E
Eric Tschetter 已提交
32 33 34 35 36 37 38 39 40 41
    </parent>

    <dependencies>
        <dependency>
            <groupId>com.metamx.druid</groupId>
            <artifactId>druid-common</artifactId>
            <version>${project.parent.version}</version>
        </dependency>
        <dependency>
            <groupId>com.metamx.druid</groupId>
F
fjy 已提交
42
            <artifactId>druid-indexing-common</artifactId>
E
Eric Tschetter 已提交
43 44 45
            <version>${project.parent.version}</version>
        </dependency>

46 47 48 49
        <dependency>
            <groupId>com.metamx</groupId>
            <artifactId>emitter</artifactId>
        </dependency>
E
Eric Tschetter 已提交
50 51 52 53 54 55
        <dependency>
            <groupId>com.metamx</groupId>
            <artifactId>http-client</artifactId>
        </dependency>
        <dependency>
            <groupId>com.metamx</groupId>
56 57 58 59 60
            <artifactId>java-util</artifactId>
        </dependency>
        <dependency>
            <groupId>com.metamx</groupId>
            <artifactId>server-metrics</artifactId>
E
Eric Tschetter 已提交
61 62
        </dependency>

63 64 65 66 67 68 69 70
        <dependency>
            <groupId>com.davekoelle</groupId>
            <artifactId>alphanum</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
        </dependency>
71 72 73 74
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
        </dependency>
75 76 77 78 79
        <dependency>
            <groupId>org.skife.config</groupId>
            <artifactId>config-magic</artifactId>
        </dependency>
        <dependency>
80
            <groupId>org.apache.curator</groupId>
81 82 83
            <artifactId>curator-client</artifactId>
        </dependency>
        <dependency>
84
            <groupId>org.apache.curator</groupId>
85 86 87
            <artifactId>curator-framework</artifactId>
        </dependency>
        <dependency>
88
            <groupId>org.apache.curator</groupId>
89 90
            <artifactId>curator-x-discovery</artifactId>
        </dependency>
E
Eric Tschetter 已提交
91 92 93 94 95
        <dependency>
            <groupId>org.mortbay.jetty</groupId>
            <artifactId>jetty</artifactId>
        </dependency>
        <dependency>
96 97
            <groupId>org.mortbay.jetty</groupId>
            <artifactId>jetty-util</artifactId>
E
Eric Tschetter 已提交
98 99 100 101 102 103
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
104 105
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
E
Eric Tschetter 已提交
106 107
        </dependency>
        <dependency>
108 109
            <groupId>com.ibm.icu</groupId>
            <artifactId>icu4j</artifactId>
E
Eric Tschetter 已提交
110 111
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
112 113
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
E
Eric Tschetter 已提交
114 115
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
116 117
            <groupId>com.fasterxml.jackson.jaxrs</groupId>
            <artifactId>jackson-jaxrs-json-provider</artifactId>
E
Eric Tschetter 已提交
118 119
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
120 121
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
E
Eric Tschetter 已提交
122 123
        </dependency>
        <dependency>
E
Eric Tschetter 已提交
124 125
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-smile</artifactId>
E
Eric Tschetter 已提交
126 127
        </dependency>
        <dependency>
128 129
            <groupId>javax.inject</groupId>
            <artifactId>javax.inject</artifactId>
E
Eric Tschetter 已提交
130 131
        </dependency>
        <dependency>
132 133
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-server</artifactId>
E
Eric Tschetter 已提交
134 135
        </dependency>
        <dependency>
136 137
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-core</artifactId>
E
Eric Tschetter 已提交
138 139
        </dependency>
        <dependency>
140 141
            <groupId>com.sun.jersey.contribs</groupId>
            <artifactId>jersey-guice</artifactId>
E
Eric Tschetter 已提交
142 143
        </dependency>
        <dependency>
144 145
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
E
Eric Tschetter 已提交
146 147
        </dependency>
        <dependency>
148 149
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
E
Eric Tschetter 已提交
150 151
        </dependency>
        <dependency>
152 153
            <groupId>com.google.inject.extensions</groupId>
            <artifactId>guice-servlet</artifactId>
E
Eric Tschetter 已提交
154 155
        </dependency>
        <dependency>
156 157 158 159 160 161 162 163 164
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.netty</groupId>
            <artifactId>netty</artifactId>
            <version>3.2.4.Final</version>
        </dependency>
        <dependency>
165
            <groupId>javax.servlet</groupId>
166 167 168 169 170 171
            <artifactId>servlet-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
        </dependency>
X
xvrl 已提交
172 173 174 175
        <dependency>
            <groupId>com.google.code.simple-spring-memcached</groupId>
            <artifactId>spymemcached</artifactId>
        </dependency>
C
cheddar 已提交
176 177 178 179 180 181 182 183
        <dependency>
            <groupId>org.antlr</groupId>
            <artifactId>antlr4-runtime</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-cli</groupId>
            <artifactId>commons-cli</artifactId>
        </dependency>
F
fjy 已提交
184 185 186 187
        <dependency>
            <groupId>com.metamx</groupId>
            <artifactId>bytebuffer-collections</artifactId>
        </dependency>
188
        <dependency>
X
Xavier Léauté 已提交
189 190
          <groupId>net.jpountz.lz4</groupId>
          <artifactId>lz4</artifactId>
191
        </dependency>
E
Eric Tschetter 已提交
192 193 194 195 196 197 198 199 200 201 202 203

        <!-- Tests -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <scope>test</scope>
        </dependency>
X
xvrl 已提交
204 205 206 207 208
        <dependency>
            <groupId>com.google.caliper</groupId>
            <artifactId>caliper</artifactId>
            <scope>test</scope>
        </dependency>
X
xvrl 已提交
209
        <dependency>
C
cheddar 已提交
210 211 212
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-test</artifactId>
            <scope>test</scope>
X
xvrl 已提交
213
        </dependency>
C
cheddar 已提交
214

E
Eric Tschetter 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
X
xvrl 已提交
229 230

            <plugin>
231 232 233 234 235 236 237 238 239
                <groupId>org.antlr</groupId>
                <artifactId>antlr4-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>antlr4</goal>
                        </goals>
                    </execution>
                </executions>
X
xvrl 已提交
240
            </plugin>
241
        </plugins>
E
Eric Tschetter 已提交
242 243
    </build>
</project>