pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.crunii.microservice</groupId>
  7. <artifactId>interfaces</artifactId>
  8. <version>${micro.version}</version>
  9. </parent>
  10. <artifactId>intf-http-demo</artifactId>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <start-class>com.crunii.micro.intf.httpdemo.Application</start-class>
  14. </properties>
  15. <dependencies>
  16. <!-- 用户中心对接SDK -->
  17. <dependency>
  18. <groupId>com.dcqc</groupId>
  19. <artifactId>dcqc-uc-oauth-sdk</artifactId>
  20. <version>3.0.0-RELEASE</version>
  21. </dependency>
  22. <!-- jwt -->
  23. <dependency>
  24. <groupId>com.auth0</groupId>
  25. <artifactId>java-jwt</artifactId>
  26. <version>3.11.0</version>
  27. </dependency>
  28. <!-- bc库,BouncyCastle是一款开源的密码包,其中包含了大量的密码算法,使用BouncyCastle的目的就是为了扩充算法支持
  29. -->
  30. <dependency>
  31. <groupId>org.bouncycastle</groupId>
  32. <artifactId>bcprov-jdk15on</artifactId>
  33. <version>1.65</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.bouncycastle</groupId>
  37. <artifactId>bcpkix-jdk15on</artifactId>
  38. <version>1.65</version>
  39. </dependency>
  40. <!-- fastjson -->
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. <version>1.2.73</version>
  45. </dependency>
  46. <!--政务钉钉 start -->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>zwdd-sdk-java</artifactId>
  50. <version>1.2.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>joda-time</groupId>
  54. <artifactId>joda-time</artifactId>
  55. <version>2.10</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpclient</artifactId>
  60. <version>4.5.13</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.httpcomponents</groupId>
  64. <artifactId>httpmime</artifactId>
  65. <version>4.5.13</version>
  66. </dependency>
  67. <!--政务钉钉 end -->
  68. </dependencies>
  69. </project>