| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.bex</groupId>
- <artifactId>bex-cloud-staking</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>bex-cloud-staking-entity</artifactId>
- <name>BEX 质押服务 - 实体模块</name>
- <description>数据模型定义、实体类与Mapper接口</description>
- <dependencies>
- <!-- 依赖核心模块 -->
- <dependency>
- <groupId>com.bex</groupId>
- <artifactId>bex-cloud-staking-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- MyBatis-Plus 注解支持 -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot4-starter</artifactId>
- </dependency>
- <!-- Protobuf 消息定义 -->
- <dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- </dependency>
- <dependency>
- <groupId>com.bex</groupId>
- <artifactId>bex-cloud-common</artifactId>
- </dependency>
- <!-- ==================== 测试依赖(仅测试期生效) ==================== -->
- <!--
- H2 内存数据库(MySQL 兼容模式):用于 Mapper CRUD 与唯一约束集成测试,
- 保证 CI 无 Docker 环境也可运行;版本由 spring-boot-dependencies BOM 统一管理。
- -->
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|