pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <parent>
  5. <groupId>com.lc.ibps.cloud</groupId>
  6. <artifactId>ibps-basic-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-basic-feign</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <!-- ribbon 调用服务的客户端负载均衡框架 -->
  16. <dependency>
  17. <groupId>com.netflix.ribbon</groupId>
  18. <artifactId>ribbon-core</artifactId>
  19. </dependency>
  20. <!-- feign 调用服务的客户端框架 包括hystrix框架 -->
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-starter-openfeign</artifactId>
  24. </dependency>
  25. <!-- feign可以支持formurl类型 -->
  26. <dependency>
  27. <groupId>io.github.openfeign.form</groupId>
  28. <artifactId>feign-form</artifactId>
  29. </dependency>
  30. <!-- 引用此包,可以让feign使用httpclient框架 -->
  31. <dependency>
  32. <groupId>io.github.openfeign</groupId>
  33. <artifactId>feign-httpclient</artifactId>
  34. </dependency>
  35. <!-- 日志框架 -->
  36. <dependency>
  37. <groupId>org.apache.commons</groupId>
  38. <artifactId>commons-lang3</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.javassist</groupId>
  42. <artifactId>javassist</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.lc.ibps.base</groupId>
  46. <artifactId>ibps-base-cloud</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.lc.ibps.base</groupId>
  50. <artifactId>ibps-base-web</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>javax.servlet</groupId>
  54. <artifactId>javax.servlet-api</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-api</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <artifactId>maven-compiler-plugin</artifactId>
  67. <version>3.3</version>
  68. <configuration>
  69. <source>1.8</source>
  70. <target>1.8</target>
  71. <encoding>UTF-8</encoding>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>