pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yihu.jw</groupId>
  8. <artifactId>wlyy-parent-pom</artifactId>
  9. <version>2.4.0</version>
  10. <relativePath>../../wlyy-lib-parent-pom/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>commons-data-elasticsearch</artifactId>
  13. <packaging>jar</packaging>
  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. </dependency>
  29. <dependency>
  30. <groupId>org.nlpcn</groupId>
  31. <artifactId>elasticsearch-sql</artifactId>
  32. <version>${version.elasticsearch-sql}</version>
  33. </dependency>
  34. <!-- ElasticSearch -->
  35. <dependency>
  36. <groupId>org.slf4j</groupId>
  37. <artifactId>slf4j-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.data</groupId>
  41. <artifactId>spring-data-commons</artifactId>
  42. <scope>compile</scope>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>