You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
4.7 KiB
193 lines
4.7 KiB
<?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"> |
|
<parent> |
|
<artifactId>mls</artifactId> |
|
<groupId>com.mls</groupId> |
|
<version>4.1.0</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>mls-common</artifactId> |
|
|
|
<description> |
|
common通用工具 |
|
</description> |
|
|
|
<dependencies> |
|
|
|
|
|
|
|
<!--rabbitmq--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-amqp</artifactId> |
|
</dependency> |
|
|
|
<!-- redis --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
</dependency> |
|
|
|
<!-- Spring框架基本的核心工具 --> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context-support</artifactId> |
|
</dependency> |
|
|
|
<!-- SpringWeb模块 --> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
</dependency> |
|
|
|
<!--Shiro核心框架 --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-core</artifactId> |
|
</dependency> |
|
|
|
<!-- pagehelper 分页插件 --> |
|
<dependency> |
|
<groupId>com.github.pagehelper</groupId> |
|
<artifactId>pagehelper-spring-boot-starter</artifactId> |
|
</dependency> |
|
|
|
<!-- 自定义验证注解 --> |
|
<dependency> |
|
<groupId>javax.validation</groupId> |
|
<artifactId>validation-api</artifactId> |
|
</dependency> |
|
|
|
<!--常用工具类 --> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-lang3</artifactId> |
|
</dependency> |
|
|
|
<!-- JSON工具类 --> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
</dependency> |
|
|
|
<!-- 阿里JSON解析器 --> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
</dependency> |
|
|
|
<!-- io常用工具类 --> |
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
</dependency> |
|
|
|
<!-- 文件上传工具类 --> |
|
<dependency> |
|
<groupId>commons-fileupload</groupId> |
|
<artifactId>commons-fileupload</artifactId> |
|
</dependency> |
|
|
|
<!-- excel工具 --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
</dependency> |
|
|
|
<!-- yml解析器 --> |
|
<dependency> |
|
<groupId>org.yaml</groupId> |
|
<artifactId>snakeyaml</artifactId> |
|
</dependency> |
|
|
|
<!-- servlet包 --> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
</dependency> |
|
<!-- swagger2--> |
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger2</artifactId> |
|
</dependency> |
|
|
|
<!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本--> |
|
<dependency> |
|
<groupId>io.swagger</groupId> |
|
<artifactId>swagger-annotations</artifactId> |
|
<version>1.5.21</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.swagger</groupId> |
|
<artifactId>swagger-models</artifactId> |
|
<version>1.5.21</version> |
|
</dependency> |
|
|
|
<!-- swagger2-UI--> |
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger-ui</artifactId> |
|
</dependency> |
|
|
|
|
|
<!-- 支付框架 --> |
|
<dependency> |
|
<groupId>com.egzosn</groupId> |
|
<artifactId>pay-java-ali</artifactId> |
|
<version>2.13.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.egzosn</groupId> |
|
<artifactId>pay-java-wx</artifactId> |
|
<version>2.13.2</version> |
|
</dependency> |
|
|
|
|
|
|
|
<!--MINIO 文件上传--> |
|
<dependency> |
|
<groupId>io.minio</groupId> |
|
<artifactId>minio</artifactId> |
|
<version>3.0.10</version> |
|
</dependency> |
|
|
|
<!-- 阿里云短信 集成--> |
|
<dependency> |
|
<groupId>com.aliyun</groupId> |
|
<artifactId>aliyun-java-sdk-core</artifactId> |
|
<version>4.0.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.aliyun</groupId> |
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId> |
|
<version>2.1.0</version> |
|
</dependency> |
|
|
|
|
|
<!--小程序开发工具包--> |
|
<dependency> |
|
<groupId>com.github.binarywang</groupId> |
|
<artifactId>weixin-java-miniapp</artifactId> |
|
<version>3.8.0</version> |
|
</dependency> |
|
|
|
<!-- 二维码 --> |
|
<dependency> |
|
<groupId>com.google.zxing</groupId> |
|
<artifactId>javase</artifactId> |
|
<version>3.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</dependency> |
|
|
|
|
|
</dependencies> |
|
|
|
</project> |