100 lines
3.3 KiB
XML
100 lines
3.3 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">
|
||
<parent>
|
||
<artifactId>redmall-eladmin</artifactId>
|
||
<groupId>com.wuqian</groupId>
|
||
<version>2.6</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>redmall-main</artifactId>
|
||
<name>RedMall业务管理</name>
|
||
|
||
|
||
<dependencies>
|
||
<!-- 同时需要common模块和logging模块只需要引入logging模块即可 -->
|
||
<dependency>
|
||
<groupId>com.wuqian</groupId>
|
||
<artifactId>redmall-logging</artifactId>
|
||
<version>2.6</version>
|
||
</dependency>
|
||
|
||
|
||
<!--redis依赖-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
<!--对象池依赖,springBoot这里用redis需要加入该依赖-->
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-pool2</artifactId>
|
||
</dependency>
|
||
<!-- 方便为RedisTemplate的key-value做序列化操作 -->
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-core</artifactId>
|
||
<version>2.9.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-databind</artifactId>
|
||
<version>2.9.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-annotations</artifactId>
|
||
<version>2.9.4</version>
|
||
</dependency>
|
||
|
||
<!-- 阿里云OSS -->
|
||
<dependency>
|
||
<groupId>com.aliyun.oss</groupId>
|
||
<artifactId>aliyun-sdk-oss</artifactId>
|
||
<version>3.6.0</version>
|
||
</dependency>
|
||
|
||
<!--json依赖-->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.59</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.sf.json-lib</groupId>
|
||
<artifactId>json-lib</artifactId>
|
||
<classifier>jdk15</classifier>
|
||
<version>2.4</version>
|
||
</dependency>
|
||
|
||
<!-- 阿里短信接口 -->
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>aliyun-java-sdk-core</artifactId>
|
||
<version>4.3.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
||
<version>1.1.0</version>
|
||
</dependency>
|
||
|
||
<!-- 快递100-->
|
||
<dependency>
|
||
<groupId>com.github.kuaidi100-api</groupId>
|
||
<artifactId>sdk</artifactId>
|
||
<version>1.0.11</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.tencentyun</groupId>
|
||
<artifactId>tls-sig-api-v2</artifactId>
|
||
<version>2.0</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
</project>
|