pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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-oauth-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-oauth-feignclient</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <!-- response -->
  16. <dependency>
  17. <groupId>com.lc.ibps.cloud</groupId>
  18. <artifactId>ibps-basic-response</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.lc.ibps.cloud</groupId>
  22. <artifactId>ibps-basic-client</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.lc.ibps.cloud</groupId>
  26. <artifactId>ibps-oauth-base</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-api</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>servlet-api</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.3</version>
  44. <configuration>
  45. <source>1.8</source>
  46. <target>1.8</target>
  47. <encoding>UTF-8</encoding>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>