pom.xml 8.1 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.
  -->

F
fjy 已提交
21 22
<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 已提交
23 24 25 26 27 28 29 30 31
    <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>
32
        <version>0.4.33-SNAPSHOT</version>
E
Eric Tschetter 已提交
33 34 35 36 37 38 39 40 41 42
    </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 已提交
43
            <artifactId>druid-indexing-common</artifactId>
E
Eric Tschetter 已提交
44 45 46
            <version>${project.parent.version}</version>
        </dependency>

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

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

        <!-- 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 已提交
198 199 200 201 202
        <dependency>
            <groupId>com.google.caliper</groupId>
            <artifactId>caliper</artifactId>
            <scope>test</scope>
        </dependency>
X
xvrl 已提交
203
        <dependency>
C
cheddar 已提交
204 205 206
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-test</artifactId>
            <scope>test</scope>
X
xvrl 已提交
207
        </dependency>
C
cheddar 已提交
208

E
Eric Tschetter 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222
    </dependencies>

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

            <plugin>
225 226 227 228 229 230 231 232 233
                <groupId>org.antlr</groupId>
                <artifactId>antlr4-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>antlr4</goal>
                        </goals>
                    </execution>
                </executions>
X
xvrl 已提交
234
            </plugin>
235
        </plugins>
E
Eric Tschetter 已提交
236 237
    </build>
</project>