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

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-common</artifactId>
    <name>druid-common</name>
    <description>druid-common</description>

    <parent>
        <groupId>com.metamx</groupId>
        <artifactId>druid</artifactId>
31
        <version>0.5.51-SNAPSHOT</version>
E
Eric Tschetter 已提交
32 33 34 35 36 37 38
    </parent>

    <dependencies>
        <dependency>
            <groupId>com.metamx</groupId>
            <artifactId>java-util</artifactId>
        </dependency>
39

E
Eric Tschetter 已提交
40
        <dependency>
41 42
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
E
Eric Tschetter 已提交
43 44
        </dependency>
        <dependency>
45 46 47
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.4</version>
E
Eric Tschetter 已提交
48 49
        </dependency>
        <dependency>
50 51 52
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
            <version>1.6</version>
E
Eric Tschetter 已提交
53 54
        </dependency>
        <dependency>
55 56
            <groupId>org.skife.config</groupId>
            <artifactId>config-magic</artifactId>
E
Eric Tschetter 已提交
57 58
        </dependency>
        <dependency>
59
            <groupId>org.apache.curator</groupId>
60
            <artifactId>curator-recipes</artifactId>
E
Eric Tschetter 已提交
61 62
        </dependency>
        <dependency>
63
            <groupId>org.apache.curator</groupId>
64
            <artifactId>curator-x-discovery</artifactId>
E
Eric Tschetter 已提交
65 66 67 68 69 70
        </dependency>
        <dependency>
            <groupId>it.uniroma3.mat</groupId>
            <artifactId>extendedset</artifactId>
        </dependency>
        <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 90 91 92 93 94
        </dependency>
        <dependency>
            <groupId>org.jdbi</groupId>
            <artifactId>jdbi</artifactId>
        </dependency>
        <dependency>
95 96
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
E
Eric Tschetter 已提交
97 98
        </dependency>
        <dependency>
99 100
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
E
Eric Tschetter 已提交
101 102
        </dependency>
        <dependency>
103 104
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
E
Eric Tschetter 已提交
105 106
        </dependency>
        <dependency>
107 108 109
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.18</version>
E
Eric Tschetter 已提交
110 111
        </dependency>
        <dependency>
112 113 114
            <groupId>org.mozilla</groupId>
            <artifactId>rhino</artifactId>
            <version>1.7R4</version>
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>
X
xvrl 已提交
147
              </plugin>
E
Eric Tschetter 已提交
148 149 150
        </plugins>
    </build>
</project>