pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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.iocoder.boot</groupId>
  7. <artifactId>yudao</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-admin-server</artifactId>
  12. <packaging>jar</packaging>
  13. <name>yudao-admin-server</name>
  14. <description>
  15. 后端 Server 的主项目,通过引入需要 yudao-module-xxx 的依赖,
  16. 从而实现提供 RESTful API 给 yudao-ui-admin、yudao-ui-user 等前端项目。
  17. 本质上来说,它就是个空壳(容器)!
  18. </description>
  19. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  20. <dependencies>
  21. <!-- TODO 芋艿:多模块 -->
  22. <dependency>
  23. <groupId>cn.iocoder.boot</groupId>
  24. <artifactId>yudao-module-member-impl</artifactId>
  25. <version>${revision}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.iocoder.boot</groupId>
  29. <artifactId>yudao-module-system-impl</artifactId>
  30. <version>${revision}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-module-infra-impl</artifactId>
  35. <version>${revision}</version>
  36. </dependency>
  37. <!-- 业务组件 -->
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-core-service</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.iocoder.boot</groupId>
  44. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.iocoder.boot</groupId>
  48. <artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.iocoder.boot</groupId>
  52. <artifactId>yudao-spring-boot-starter-biz-sms</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>cn.iocoder.boot</groupId>
  56. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  57. </dependency>
  58. <!-- 默认引入bpm-activiti. 可以替换为bpm-flowable -->
  59. <!-- TODO 芋艿:临时注释,测试通过后,打开 -->
  60. <!-- <dependency>-->
  61. <!-- <groupId>cn.iocoder.boot</groupId>-->
  62. <!-- <artifactId>yudao-module-bpm-activiti</artifactId>-->
  63. <!-- </dependency>-->
  64. <!-- <dependency>-->
  65. <!-- <groupId>cn.iocoder.boot</groupId>-->
  66. <!-- <artifactId>yudao-module-bpm-core-service-impl</artifactId>-->
  67. <!-- </dependency>-->
  68. <!-- Web 相关 -->
  69. <dependency>
  70. <groupId>cn.iocoder.boot</groupId>
  71. <artifactId>yudao-spring-boot-starter-web</artifactId>
  72. </dependency>
  73. <!-- spring boot 配置所需依赖 -->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-configuration-processor</artifactId>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>cn.iocoder.boot</groupId>
  81. <artifactId>yudao-spring-boot-starter-security</artifactId>
  82. </dependency>
  83. <!-- DB 相关 -->
  84. <dependency>
  85. <groupId>cn.iocoder.boot</groupId>
  86. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>cn.iocoder.boot</groupId>
  90. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  91. </dependency>
  92. <!-- Config 配置中心相关 -->
  93. <dependency>
  94. <groupId>cn.iocoder.boot</groupId>
  95. <artifactId>yudao-spring-boot-starter-config</artifactId>
  96. </dependency>
  97. <!-- Job 定时任务相关 -->
  98. <dependency>
  99. <groupId>cn.iocoder.boot</groupId>
  100. <artifactId>yudao-spring-boot-starter-job</artifactId>
  101. </dependency>
  102. <!-- 消息队列相关 -->
  103. <dependency>
  104. <groupId>cn.iocoder.boot</groupId>
  105. <artifactId>yudao-spring-boot-starter-mq</artifactId>
  106. </dependency>
  107. <!-- 服务保障相关 -->
  108. <dependency>
  109. <groupId>cn.iocoder.boot</groupId>
  110. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  111. </dependency>
  112. <!-- 监控相关 -->
  113. <dependency>
  114. <groupId>cn.iocoder.boot</groupId>
  115. <artifactId>yudao-spring-boot-starter-monitor</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>de.codecentric</groupId>
  119. <artifactId>spring-boot-admin-starter-server</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
  120. </dependency>
  121. <!-- Test 测试相关 -->
  122. <dependency>
  123. <groupId>cn.iocoder.boot</groupId>
  124. <artifactId>yudao-spring-boot-starter-test</artifactId>
  125. <scope>test</scope>
  126. </dependency>
  127. <!-- 工具类相关 -->
  128. <dependency>
  129. <groupId>cn.iocoder.boot</groupId>
  130. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.velocity</groupId>
  134. <artifactId>velocity-engine-core</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>cn.smallbun.screw</groupId>
  138. <artifactId>screw-core</artifactId> <!-- 实现数据库文档 -->
  139. </dependency>
  140. <!-- 三方云服务相关 -->
  141. <dependency>
  142. <groupId>com.xkcoding.justauth</groupId>
  143. <artifactId>justauth-spring-boot-starter</artifactId>
  144. </dependency>
  145. </dependencies>
  146. <build>
  147. <!-- 设置构建的 jar 包名 -->
  148. <finalName>${artifactId}</finalName>
  149. <plugins>
  150. <!-- 打包 -->
  151. <plugin>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-maven-plugin</artifactId>
  154. <configuration>
  155. <fork>true</fork>
  156. </configuration>
  157. <executions>
  158. <execution>
  159. <goals>
  160. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  161. </goals>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </project>