2021-06-09 16:05:40 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion> <!-- POM模型版本 -->
|
|
|
|
|
|
|
|
|
|
<groupId>com.jeequan</groupId> <!-- 组织名, 类似于包名 -->
|
|
|
|
|
<artifactId>jeepay-payment</artifactId> <!-- 项目名称 -->
|
|
|
|
|
<packaging>jar</packaging> <!-- 项目的最终打包类型/发布形式, 可选[jar, war, pom, maven-plugin]等 -->
|
|
|
|
|
<version>${isys.version}</version> <!-- 项目当前版本号 -->
|
|
|
|
|
<description>Jeepay计全支付系统 [统一支付网关]</description> <!-- 项目描述 -->
|
|
|
|
|
<url>https://www.jeequan.com</url>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.jeequan</groupId>
|
|
|
|
|
<artifactId>jeepay</artifactId>
|
2021-06-25 14:27:26 +08:00
|
|
|
|
<version>Final</version>
|
2021-06-09 16:05:40 +08:00
|
|
|
|
</parent>
|
|
|
|
|
<!-- 项目依赖声明 -->
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 依赖[ service ]包, 会自动传递依赖[ core ]包。 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeequan</groupId>
|
|
|
|
|
<artifactId>jeepay-service</artifactId>
|
|
|
|
|
<version>${isys.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 依赖 sping-boot-web -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion> <!-- 删除spring boot默认json映射器: Jackson, 引入fastJSON -->
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jdk8</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
|
<artifactId>jackson-module-parameter-names</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- freemarker -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- hibernate.validator插件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 添加redis支持 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 添加对activeMQ的支持 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-activemq</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-06-28 11:47:59 +08:00
|
|
|
|
<!-- 添加对rabbitMQ的支持 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-06-09 16:05:40 +08:00
|
|
|
|
<!--wx_pay https://github.com/wechat-group/WxJava -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>weixin-java-mp</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 生成二维码工具包 zxing -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.alipay.sdk/alipay-sdk-java -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 作为可执行jar -->
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
2021-06-10 18:23:21 +08:00
|
|
|
|
|
|
|
|
|
<!-- resources资源配置项 -->
|
|
|
|
|
<resources>
|
|
|
|
|
<!-- 通用资源文件 -->
|
|
|
|
|
<resource><directory>src/main/resources</directory><includes><include>**/*.*</include></includes></resource>
|
|
|
|
|
|
|
|
|
|
<!-- 放置通用配置yml文件, 开发时仅配置一套参数即可。 实际生产环境下应在每个项目下 与jar同级目录下新建application.yml覆写对应参数。 -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>../conf/devCommons</directory>
|
|
|
|
|
<includes><include>**/*.yml</include></includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
|
2021-06-09 16:05:40 +08:00
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|