79 lines
2.8 KiB
XML
79 lines
2.8 KiB
XML
|
<?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.bocloud</groupId>
|
||
|
<artifactId>bocloud.sms</artifactId>
|
||
|
<version>5.6.0-HBCL-RELEASE</version>
|
||
|
</parent>
|
||
|
<artifactId>bocloud.sms.service</artifactId>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.bre.service</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.sms.storage</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.data</groupId>
|
||
|
<artifactId>spring-data-redis</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.ldap</groupId>
|
||
|
<artifactId>spring-ldap-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.auth0</groupId>
|
||
|
<artifactId>java-jwt</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
<artifactId>jjwt</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.amqp</groupId>
|
||
|
<artifactId>spring-amqp</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.validation</groupId>
|
||
|
<artifactId>validation-api</artifactId>
|
||
|
</dependency>
|
||
|
<!--导出Excel依赖-->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi</artifactId>
|
||
|
<version>3.17</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi-ooxml</artifactId>
|
||
|
<version>3.17</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>okhttp</artifactId>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/com.aliyun/alibaba-dingtalk-service-sdk -->
|
||
|
<dependency>
|
||
|
<groupId>com.aliyun</groupId>
|
||
|
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
|
||
|
<version>1.0.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>druid</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.rpc</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|