<?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>org.jeecgframework.boot</groupId>
|
|
<artifactId>recycle-admin</artifactId>
|
|
<version>3.2.0</version>
|
|
</parent>
|
|
|
|
<artifactId>module-common</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>1.5.22</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>base-core</artifactId>
|
|
</dependency>
|
|
|
|
<!-- lzx:公用工具类每个新模块必加 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>base-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vaadin.external.google</groupId>
|
|
<artifactId>android-json</artifactId>
|
|
<version>0.0.20131108.vaadin1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
<version>3.5.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>module-pay</artifactId>
|
|
<version>3.2.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
|
|
<!--微信支付-->
|
|
<dependency>
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
<artifactId>wechatpay-java</artifactId>
|
|
<version>0.2.15</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 物流SDK本地jar包 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.dop</groupId>-->
|
|
<!-- <artifactId>dop-sdk</artifactId>-->
|
|
<!-- <version>0.0.1-SNAPSHOT</version>-->
|
|
<!-- <scope>system</scope>-->
|
|
<!-- <systemPath>${project.basedir}/../lib/JAVASDK/dop-sdk-0.0.1-SNAPSHOT.jar</systemPath>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 德邦物流SDK依赖的commons-httpclient -->
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>3.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|