pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <parent>
  6. <artifactId>infrastructure</artifactId>
  7. <groupId>com.xunwang</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>api_gateway</artifactId>
  12. <description>网关微服务</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.xunwang</groupId>
  16. <artifactId>common_utils</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alibaba.cloud</groupId>
  21. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-gateway</artifactId>
  26. </dependency>
  27. <!--gson-->
  28. <dependency>
  29. <groupId>com.google.code.gson</groupId>
  30. <artifactId>gson</artifactId>
  31. </dependency>
  32. <!--服务调用-->
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-openfeign</artifactId>
  36. </dependency>
  37. </dependencies>
  38. </project>