| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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">
- <parent>
- <artifactId>aegis-command</artifactId>
- <groupId>com.aegis</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>aegis-emergency</artifactId>
- <description>
- emergency 应急调度业务模块
- </description>
- <dependencies>
- <!-- 通用工具 -->
- <dependency>
- <groupId>com.aegis</groupId>
- <artifactId>aegis-common</artifactId>
- </dependency>
- <!-- 系统模块,复用组织/用户等能力 -->
- <dependency>
- <groupId>com.aegis</groupId>
- <artifactId>aegis-system</artifactId>
- </dependency>
- <!-- 通知模块,处理短信/站内消息等通知能力 -->
- <dependency>
- <groupId>com.aegis</groupId>
- <artifactId>aegis-notification</artifactId>
- </dependency>
- <!-- 资源模块依赖,调度模块复用资源服务 -->
- <dependency>
- <groupId>com.aegis</groupId>
- <artifactId>aegis-resource</artifactId>
- </dependency>
- <!-- 文件模块,预留录音附件等接入能力 -->
- <dependency>
- <groupId>com.aegis</groupId>
- <artifactId>aegis-file</artifactId>
- </dependency>
- <!-- Quartz 调度模块,用于转警提醒、排班检查等定时任务 -->
- <dependency>
- <groupId>com.aegis</groupId>
- <artifactId>aegis-quartz</artifactId>
- </dependency>
- <!-- MyBatis-Plus -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- </dependency>
- <!-- 测试依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- <optional>true</optional>
- </dependency>
- </dependencies>
- </project>
|