pom.xml 2.0 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.phm</groupId>
  8. <artifactId>phm</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>phm-manage</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.phm</groupId>
  20. <artifactId>phm-generator</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.phm</groupId>
  24. <artifactId>phm-system</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-webflux</artifactId>
  29. </dependency>
  30. <!--<dependency>-->
  31. <!-- <groupId>org.elasticsearch.client</groupId>-->
  32. <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
  33. <!--</dependency>-->
  34. <dependency>
  35. <groupId>org.elasticsearch.client</groupId>
  36. <artifactId>elasticsearch-rest-client</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.elasticsearch</groupId>
  40. <artifactId>elasticsearch</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.dromara.easy-es</groupId>
  44. <artifactId>easy-es-boot-starter</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-test</artifactId>
  49. <version>5.3.29</version>
  50. </dependency>
  51. </dependencies>
  52. </project>