Files
msgpush/msgpush-module-system/msgpush-module-system-api/pom.xml

47 lines
1.4 KiB
XML
Raw Normal View History

2026-02-03 10:18: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>
2026-02-03 10:18:40 +08:00
<parent>
<groupId>com.njcn</groupId>
<artifactId>msgpush-module-system</artifactId>
<version>${revision}</version>
</parent>
<artifactId>msgpush-module-system-api</artifactId>
2026-02-03 10:18:40 +08:00
<description>
系统模块接口,暴露给其它模块调用
2026-02-03 10:18:40 +08:00
</description>
<dependencies>
2026-02-03 10:18:40 +08:00
<dependency>
<groupId>com.njcn</groupId>
<artifactId>msgpush-common</artifactId>
</dependency>
<!-- Web 相关 -->
<dependency>
<groupId>io.swagger.core.v3</groupId>
2026-04-09 13:39:10 +08:00
<artifactId>swagger-annotations-jakarta</artifactId>
2026-02-03 10:18:40 +08:00
</dependency>
<!-- 参数校验 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
<optional>true</optional>
</dependency>
<!-- RPC 远程调用相关 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
2026-04-09 13:39:10 +08:00
</project>