pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.elasticsearch</groupId>
  5. <artifactId>elasticsearch-query</artifactId>
  6. <version>2.4.4</version>
  7. </parent>
  8. <artifactId>elasticsearch-query-spring</artifactId>
  9. <packaging>jar</packaging>
  10. <name>${project.artifactId}</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.elasticsearch</groupId>
  14. <artifactId>elasticsearch-query-core</artifactId>
  15. <version>${project.parent.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.elasticsearch</groupId>
  19. <artifactId>elasticsearch-query-jdbc</artifactId>
  20. <version>${project.parent.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-orm</artifactId>
  25. <version>${spring.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.ibatis</groupId>
  29. <artifactId>ibatis-sqlmap</artifactId>
  30. <version>${ibatis.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>log4j</groupId>
  34. <artifactId>log4j</artifactId>
  35. <version>1.2.16</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <version>4.12</version>
  41. <scope>test</scope>
  42. </dependency>
  43. </dependencies>
  44. </project>