pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>aegis-command</artifactId>
  7. <groupId>com.aegis</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>aegis-emergency</artifactId>
  12. <description>
  13. emergency 应急调度业务模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具 -->
  17. <dependency>
  18. <groupId>com.aegis</groupId>
  19. <artifactId>aegis-common</artifactId>
  20. </dependency>
  21. <!-- 系统模块,复用组织/用户等能力 -->
  22. <dependency>
  23. <groupId>com.aegis</groupId>
  24. <artifactId>aegis-system</artifactId>
  25. </dependency>
  26. <!-- 通知模块,处理短信/站内消息等通知能力 -->
  27. <dependency>
  28. <groupId>com.aegis</groupId>
  29. <artifactId>aegis-notification</artifactId>
  30. </dependency>
  31. <!-- 资源模块依赖,调度模块复用资源服务 -->
  32. <dependency>
  33. <groupId>com.aegis</groupId>
  34. <artifactId>aegis-resource</artifactId>
  35. </dependency>
  36. <!-- 文件模块,预留录音附件等接入能力 -->
  37. <dependency>
  38. <groupId>com.aegis</groupId>
  39. <artifactId>aegis-file</artifactId>
  40. </dependency>
  41. <!-- Quartz 调度模块,用于转警提醒、排班检查等定时任务 -->
  42. <dependency>
  43. <groupId>com.aegis</groupId>
  44. <artifactId>aegis-quartz</artifactId>
  45. </dependency>
  46. <!-- MyBatis-Plus -->
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. </dependency>
  51. <!-- 测试依赖 -->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. <scope>provided</scope>
  61. <optional>true</optional>
  62. </dependency>
  63. </dependencies>
  64. </project>