pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <groupId>cn.newfeifan.zx</groupId>
  7. <artifactId>feifan-module-infra</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>feifan-module-infra-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. infra 模块,主要提供两块能力:
  16. 1. 我们放基础设施的运维与管理,支撑上层的通用与核心业务。 例如说:定时任务的管理、服务器的信息等等
  17. 2. 研发工具,提升研发效率与质量。 例如说:代码生成器、接口文档等等
  18. </description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.newfeifan.zx</groupId>
  22. <artifactId>feifan-module-system-api</artifactId>
  23. <version>${revision}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.newfeifan.zx</groupId>
  27. <artifactId>feifan-module-infra-api</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <!-- 业务组件 -->
  31. <dependency>
  32. <groupId>cn.newfeifan.zx</groupId>
  33. <artifactId>feifan-spring-boot-starter-biz-operatelog</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.newfeifan.zx</groupId>
  37. <artifactId>feifan-spring-boot-starter-biz-tenant</artifactId>
  38. </dependency>
  39. <!-- Web 相关 -->
  40. <dependency>
  41. <groupId>cn.newfeifan.zx</groupId>
  42. <artifactId>feifan-spring-boot-starter-security</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.newfeifan.zx</groupId>
  46. <artifactId>feifan-spring-boot-starter-websocket</artifactId>
  47. </dependency>
  48. <!-- DB 相关 -->
  49. <dependency>
  50. <groupId>cn.newfeifan.zx</groupId>
  51. <artifactId>feifan-spring-boot-starter-mybatis</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-generator</artifactId> <!-- 代码生成器,使用它解析表结构 -->
  56. </dependency>
  57. <dependency>
  58. <groupId>cn.newfeifan.zx</groupId>
  59. <artifactId>feifan-spring-boot-starter-redis</artifactId>
  60. </dependency>
  61. <!-- Config 配置中心相关 -->
  62. <!-- Job 定时任务相关 -->
  63. <dependency>
  64. <groupId>cn.newfeifan.zx</groupId>
  65. <artifactId>feifan-spring-boot-starter-job</artifactId>
  66. </dependency>
  67. <!-- 消息队列相关 -->
  68. <dependency>
  69. <groupId>cn.newfeifan.zx</groupId>
  70. <artifactId>feifan-spring-boot-starter-mq</artifactId>
  71. </dependency>
  72. <!-- Test 测试相关 -->
  73. <dependency>
  74. <groupId>cn.newfeifan.zx</groupId>
  75. <artifactId>feifan-spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. <!-- 工具类相关 -->
  79. <dependency>
  80. <groupId>cn.newfeifan.zx</groupId>
  81. <artifactId>feifan-spring-boot-starter-excel</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.velocity</groupId>
  85. <artifactId>velocity-engine-core</artifactId> <!-- 实现代码生成 -->
  86. </dependency>
  87. <dependency>
  88. <groupId>cn.smallbun.screw</groupId>
  89. <artifactId>screw-core</artifactId> <!-- 实现数据库文档 -->
  90. </dependency>
  91. <!-- 监控相关 -->
  92. <dependency>
  93. <groupId>cn.newfeifan.zx</groupId>
  94. <artifactId>feifan-spring-boot-starter-monitor</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>de.codecentric</groupId>
  98. <artifactId>spring-boot-admin-starter-server</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
  99. </dependency>
  100. <!-- 三方云服务相关 -->
  101. <dependency>
  102. <groupId>cn.newfeifan.zx</groupId>
  103. <artifactId>feifan-spring-boot-starter-file</artifactId>
  104. </dependency>
  105. </dependencies>
  106. </project>