pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>jzo2o-parent</artifactId>
  7. <groupId>com.jzo2o</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jzo2o-api</artifactId>
  12. <!-- <version>1.0-SNAPSHOT</version>-->
  13. <properties>
  14. <maven.compiler.source>11</maven.compiler.source>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-openfeign</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jzo2o</groupId>
  24. <artifactId>jzo2o-common</artifactId>
  25. </dependency>
  26. <!--httpClient的依赖 -->
  27. <dependency>
  28. <groupId>io.github.openfeign</groupId>
  29. <artifactId>feign-httpclient</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.core</groupId>
  37. <artifactId>jackson-databind</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.fasterxml.jackson.datatype</groupId>
  41. <artifactId>jackson-datatype-jsr310</artifactId>
  42. </dependency>
  43. </dependencies>
  44. </project>