|
@@ -0,0 +1,59 @@
|
|
|
|
|
+<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/xsd/maven-4.0.0.xsd">
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>org.elasticsearch</groupId>
|
|
|
|
|
+ <artifactId>elasticsearch-query</artifactId>
|
|
|
|
|
+ <version>2.4.4</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+
|
|
|
|
|
+ <artifactId>elasticsearch-query-core</artifactId>
|
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
+ <name>${project.artifactId}</name>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.elasticsearch</groupId>
|
|
|
|
|
+ <artifactId>elasticsearch</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>joda-time</groupId>
|
|
|
|
|
+ <artifactId>joda-time</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-collections</groupId>
|
|
|
|
|
+ <artifactId>commons-collections</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-lang</groupId>
|
|
|
|
|
+ <artifactId>commons-lang</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>junit</groupId>
|
|
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+</project>
|