refactor(payment): 合并 admin/merchant 模块至 payment-common, 简化为单模块

- 将 daxpay-payment-admin/merchant 源码并入 daxpay-payment-common (包路径不变)
- 删除冗余的 DaxpayPaymentMerchantApp/DaxpayPaymentAdminApp, 保留 DaxpayPaymentApp
- admin 的额外依赖 (common-translate/service-baseapi/service-notify/common-artemis) 并入 common pom
- 父 pom modules 与 daxpay-start pom 同步收敛
This commit is contained in:
DaxPay Dev
2026-07-01 10:54:18 +08:00
parent fa171225d5
commit 4ea7c856ec
148 changed files with 27 additions and 268 deletions

View File

@@ -1,122 +0,0 @@
<?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>cn.daxpay.open</groupId>
<artifactId>daxpay-payment</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
<artifactId>daxpay-payment-admin</artifactId>
<packaging>jar</packaging>
<description>多商户支付运营端功能实现</description>
<dependencies>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- 类型转换处理器 -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<scope>provided</scope>
<version>${mapstruct.version}</version>
</dependency>
<!-- 类型转换 -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency>
<!-- web框架 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- 支付公共底座 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>daxpay-payment-common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 商户管理 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>daxpay-payment-merchant</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 翻译模块 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-translate</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 基础API服务 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>service-baseapi</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 站内通知服务(公告 + 个人消息) -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>service-notify</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Artemis 消息队列通用模块(供 demo 演示注入 ArtemisTemplateService -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-artemis</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- 打包Excel等资源文件损坏问题 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
<nonFilteredFileExtension>xls</nonFilteredFileExtension>
<nonFilteredFileExtension>docx</nonFilteredFileExtension>
<nonFilteredFileExtension>doc</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.sql</include>
<include>**/*.flt</include>
<include>**/*.xlsx</include>
<include>**/*.xls</include>
<include>**/*.docx</include>
<include>**/*.doc</include>
</includes>
</resource>
</resources>
</build>
</project>

View File

@@ -1,16 +0,0 @@
package cn.daxpay.open.payment.admin;
import org.apache.ibatis.annotations.Mapper;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.context.annotation.ComponentScan;
/// # 支付运营端装配入口
///
@AutoConfiguration
@ConfigurationPropertiesScan
@MapperScan(annotationClass = Mapper.class)
@ComponentScan
public class DaxpayPaymentAdminApp {
}

View File

@@ -11,7 +11,7 @@
<artifactId>daxpay-payment-common</artifactId>
<packaging>jar</packaging>
<description>多商户支付核心业务实现</description>
<description>多商户支付功能实现(含核心底座、运营端、商户端)</description>
<dependencies>
<!-- lombok -->
@@ -104,6 +104,30 @@
<artifactId>capability-wechat</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 翻译模块 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-translate</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 基础API服务 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>service-baseapi</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 站内通知服务(公告 + 个人消息) -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>service-notify</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Artemis 消息队列通用模块(供 demo 演示注入 ArtemisTemplateService -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-artemis</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

Some files were not shown because too many files have changed in this diff Show More