pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.yihu.jw</groupId>
  7. <artifactId>wlyy-lib-parent-pom</artifactId>
  8. <version>2.4.0</version>
  9. <relativePath>../../wlyy-lib-parent-pom/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.yihu.jw</groupId>
  12. <artifactId>common-data-elasticsearch</artifactId>
  13. <version>${project.parent.version}</version>
  14. <dependencies>
  15. <!-- true -->
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot</artifactId>
  23. </dependency>
  24. <!-- ElasticSearch -->
  25. <dependency>
  26. <groupId>org.elasticsearch</groupId>
  27. <artifactId>elasticsearch</artifactId>
  28. <version>2.1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.nlpcn</groupId>
  32. <artifactId>elasticsearch-sql</artifactId>
  33. <version>2.4.1.0</version>
  34. </dependency>
  35. <!-- ElasticSearch -->
  36. <dependency>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-api</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.data</groupId>
  42. <artifactId>spring-data-commons</artifactId>
  43. <scope>compile</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>