2026-04-09 21:33:09 +08:00

90 lines
2.7 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>
<artifactId>rc-service-wallet</artifactId>
<description>钱包相关服务</description>
<packaging>pom</packaging>
<modules>
<module>wallet-domain</module>
<module>wallet-infrastructure</module>
<module>wallet-client</module>
<module>wallet-application</module>
<module>wallet-adapter</module>
<module>wallet-inner-endpoint</module>
<module>wallet-start</module>
</modules>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-inner-model</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>order-inner-api</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-application</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-infrastructure</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-inner-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-inner-endpoint</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<parent>
<artifactId>rc-service</artifactId>
<groupId>com.red.circle</groupId>
<version>${revision}</version>
<relativePath>./../pom.xml</relativePath>
</parent>
</project>