pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.hhyd.ecs.hj212</groupId>
  6. <artifactId>ecs-hj212-parent</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <artifactId>ecs-hj212-server</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>${project.parent.groupId}</groupId>
  13. <artifactId>ecs-hj212-rpc</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.ctrip.framework.apollo</groupId>
  17. <artifactId>apollo-client</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.hhyd.ecs</groupId>
  21. <artifactId>ecs-plugin-redis</artifactId>
  22. </dependency>
  23. <!-- <dependency>
  24. <groupId>com.bbossgroups.plugins</groupId>
  25. <artifactId>bboss-elasticsearch-spring-boot-starter</artifactId>
  26. </dependency>-->
  27. <dependency>
  28. <groupId>org.apache.commons</groupId>
  29. <artifactId>commons-pool2</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>${project.parent.groupId}</groupId>
  33. <artifactId>ecs-hj212-common</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>