2019-03-11 19:27:15 +08:00
|
|
|
<?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>pay</artifactId>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>pay-service-impl</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
2019-05-13 22:59:47 +08:00
|
|
|
<!-- Mall 相关 -->
|
2019-03-11 19:27:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2019-05-13 22:59:47 +08:00
|
|
|
<artifactId>common-framework</artifactId>
|
2019-03-11 19:27:15 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2019-05-13 22:59:47 +08:00
|
|
|
<artifactId>system-service-api</artifactId>
|
2019-03-11 19:27:15 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-05-08 17:35:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2019-05-13 22:59:47 +08:00
|
|
|
<artifactId>pay-service-api</artifactId>
|
2019-05-08 17:35:19 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-03-11 19:27:15 +08:00
|
|
|
|
2019-05-13 22:59:47 +08:00
|
|
|
<!-- DB 相关 -->
|
2019-03-11 19:27:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
|
2019-03-11 19:27:15 +08:00
|
|
|
<dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
2019-03-11 19:27:15 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
2019-03-11 19:27:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
2019-03-11 19:27:15 +08:00
|
|
|
</dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
|
2019-03-13 00:56:03 +08:00
|
|
|
<dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
2019-03-13 00:56:03 +08:00
|
|
|
</dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
|
2020-04-12 19:39:49 +08:00
|
|
|
<!-- RPC 相关 -->
|
2019-05-13 23:47:06 +08:00
|
|
|
<dependency>
|
2020-04-12 19:39:49 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-dubbo</artifactId>
|
2019-05-13 23:47:06 +08:00
|
|
|
</dependency>
|
|
|
|
|
2020-04-12 19:39:49 +08:00
|
|
|
<!-- Registry 和 Config 相关 -->
|
2019-03-14 00:20:40 +08:00
|
|
|
<dependency>
|
2020-04-12 19:39:49 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
2019-05-13 22:59:47 +08:00
|
|
|
</dependency>
|
2020-04-12 19:39:49 +08:00
|
|
|
|
|
|
|
<!-- Transaction 相关 -->
|
2019-05-13 22:59:47 +08:00
|
|
|
<dependency>
|
2020-04-12 19:39:49 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-alibaba-seata</artifactId>
|
2019-03-14 00:20:40 +08:00
|
|
|
</dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
|
|
|
|
<!-- MQ 相关 -->
|
2019-03-14 22:17:56 +08:00
|
|
|
<dependency>
|
2020-04-13 22:39:50 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-stream-rocketmq</artifactId>
|
2019-03-14 22:17:56 +08:00
|
|
|
</dependency>
|
|
|
|
|
2019-05-13 22:59:47 +08:00
|
|
|
<!-- Job 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xuxueli</groupId>
|
|
|
|
<artifactId>xxl-job-core</artifactId>
|
|
|
|
</dependency>
|
2019-05-08 17:35:19 +08:00
|
|
|
|
2019-05-13 22:59:47 +08:00
|
|
|
<!-- 工具类相关 -->
|
2019-04-26 22:08:26 +08:00
|
|
|
<dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2019-05-08 17:35:19 +08:00
|
|
|
</dependency>
|
|
|
|
|
2019-05-13 22:59:47 +08:00
|
|
|
<!-- 云服务相关 -->
|
2019-05-08 17:35:19 +08:00
|
|
|
<dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
<groupId>Pingplusplus</groupId>
|
|
|
|
<artifactId>pingpp-java</artifactId>
|
|
|
|
<version>2.2.4</version>
|
|
|
|
<type>jar</type>
|
2019-05-08 17:35:19 +08:00
|
|
|
</dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
|
|
|
|
<!-- 测试相关 -->
|
2019-05-08 17:35:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2019-04-26 22:08:26 +08:00
|
|
|
</dependency>
|
2019-05-13 22:59:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId> <!-- 引入该包,为了写单元测试用 -->
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-03-11 19:27:15 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- 提供给 mapstruct 使用 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-03-13 00:56:03 +08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>central</id>
|
|
|
|
<name>bintray</name>
|
|
|
|
<url>http://jcenter.bintray.com</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2020-04-12 19:39:49 +08:00
|
|
|
|
2019-04-06 22:06:33 +08:00
|
|
|
</project>
|