pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.ehr</groupId>
  7. <artifactId>ehr-cloud-parent</artifactId>
  8. <version>1.13.0</version>
  9. <relativePath>../ehr-cloud-parent/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>commons-data-elasticsearch</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!-- true -->
  15. <dependency>
  16. <groupId>org.springframework</groupId>
  17. <artifactId>spring-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot</artifactId>
  22. </dependency>
  23. <!-- ElasticSearch -->
  24. <dependency>
  25. <groupId>org.elasticsearch</groupId>
  26. <artifactId>elasticsearch</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.nlpcn</groupId>
  30. <artifactId>elasticsearch-sql</artifactId>
  31. </dependency>
  32. <!-- ElasticSearch -->
  33. <dependency>
  34. <groupId>org.slf4j</groupId>
  35. <artifactId>slf4j-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.data</groupId>
  39. <artifactId>spring-data-commons</artifactId>
  40. <scope>compile</scope>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>