mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-11 15:15:33 +08:00
52 lines
2.0 KiB
XML
52 lines
2.0 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>
|
||
<parent>
|
||
<groupId>cn.daxpay.open</groupId>
|
||
<artifactId>daxpay-payment</artifactId>
|
||
<version>4.0.0-beta3</version>
|
||
<relativePath>../pom.xml</relativePath>
|
||
</parent>
|
||
|
||
<artifactId>daxpay-payment-admin</artifactId>
|
||
<packaging>jar</packaging>
|
||
<description>运营管理端(控制器 + 管理服务),依赖支付域内核</description>
|
||
|
||
<dependencies>
|
||
<!-- lombok(provided 不传递,需显式声明) -->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- 支付域内核(传递获得 spring-boot-starter-web / validation / platform 各模块) -->
|
||
<dependency>
|
||
<groupId>cn.daxpay.open</groupId>
|
||
<artifactId>daxpay-payment-core</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
<!-- 站内通知(公告 + 个人消息):运营端铃铛 / 通知中心 / SSE -->
|
||
<dependency>
|
||
<groupId>cn.daxpay.open</groupId>
|
||
<artifactId>service-notify</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
<!-- 管理端 MapStruct Convert -->
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct</artifactId>
|
||
<version>${mapstruct.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct-processor</artifactId>
|
||
<scope>provided</scope>
|
||
<version>${mapstruct.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|