123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>interfaces</artifactId>
- <version>${micro.version}</version>
- </parent>
- <artifactId>intf-http-demo</artifactId>
- <packaging>jar</packaging>
- <properties>
- <start-class>com.crunii.micro.intf.httpdemo.Application</start-class>
- </properties>
- <dependencies>
- <!-- 用户中心对接SDK -->
- <dependency>
- <groupId>com.dcqc</groupId>
- <artifactId>dcqc-uc-oauth-sdk</artifactId>
- <version>3.0.0-RELEASE</version>
- </dependency>
- <!-- jwt -->
- <dependency>
- <groupId>com.auth0</groupId>
- <artifactId>java-jwt</artifactId>
- <version>3.11.0</version>
- </dependency>
- <!-- bc库,BouncyCastle是一款开源的密码包,其中包含了大量的密码算法,使用BouncyCastle的目的就是为了扩充算法支持
- -->
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.65</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcpkix-jdk15on</artifactId>
- <version>1.65</version>
- </dependency>
- <!-- fastjson -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.73</version>
- </dependency>
- <!--政务钉钉 start -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>zwdd-sdk-java</artifactId>
- <version>1.2.0</version>
- </dependency>
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- <version>2.10</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.13</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.5.13</version>
- </dependency>
- <!--政务钉钉 end -->
- </dependencies>
- </project>
|