169 lines
5.3 KiB
XML
169 lines
5.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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<groupId>com.wuqian.www</groupId>
|
||
|
|
<artifactId>redmall-edm</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<name>redmall-edm</name>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- MyBatis plus增强和springboot的集成-->
|
||
|
|
<!--<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus</artifactId>
|
||
|
|
<version>2.1.8</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatisplus-spring-boot-starter</artifactId>
|
||
|
|
<version>1.0.5</version>
|
||
|
|
</dependency>-->
|
||
|
|
<!-- mybatis-plus begin -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
|
<version>3.0-RC3</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- mybatis-plus end -->
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
<version>3.8.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--lombok依赖-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
<version>1.14.2</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>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
<version>4.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.aliyun</groupId>
|
||
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
||
|
|
<version>4.5.18</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>
|
||
|
|
|
||
|
|
<!--计算两个经纬度间的距离-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.gavaghan</groupId>
|
||
|
|
<artifactId>geodesy</artifactId>
|
||
|
|
<version>1.1.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- swagger2 集成-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.springfox</groupId>
|
||
|
|
<artifactId>springfox-swagger2</artifactId>
|
||
|
|
<version>2.8.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--redis依赖-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.data</groupId>
|
||
|
|
<artifactId>spring-data-redis</artifactId>
|
||
|
|
<version>2.1.9.RELEASE</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||
|
|
<version>2.1.1.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-crypto</artifactId>
|
||
|
|
<version>5.0.4</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 云里付依赖-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.huifu.bspay.sdk</groupId>
|
||
|
|
<artifactId>dg-java-sdk</artifactId>
|
||
|
|
<version>3.0.7</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.bouncycastle</groupId>
|
||
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
||
|
|
<version>1.70</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- 上上签 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>cc.jinyun</groupId>
|
||
|
|
<artifactId>bestsign-spring-boot-starter</artifactId>
|
||
|
|
<version>1.0</version>
|
||
|
|
<!-- <scope>system</scope>-->
|
||
|
|
<!-- <systemPath>${project.basedir}/../libs/bestsign-spring-boot-starter-1.0.jar</systemPath>-->
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.1</version>
|
||
|
|
<configuration>
|
||
|
|
<source>1.8</source>
|
||
|
|
<target>1.8</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|