pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. <!-- 业务组件 -->
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-core-service</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.iocoder.boot</groupId>
  38. <artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.iocoder.boot</groupId>
  42. <artifactId>yudao-spring-boot-starter-biz-sms</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-spring-boot-starter-biz-data-permission</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>cn.iocoder.boot</groupId>
  54. <artifactId>yudao-spring-boot-starter-activiti</artifactId>
  55. </dependency>
  56. <!-- Web 相关 -->
  57. <dependency>
  58. <groupId>cn.iocoder.boot</groupId>
  59. <artifactId>yudao-spring-boot-starter-web</artifactId>
  60. </dependency>
  61. <!-- spring boot 配置所需依赖 -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-configuration-processor</artifactId>
  65. <optional>true</optional>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.iocoder.boot</groupId>
  69. <artifactId>yudao-spring-boot-starter-security</artifactId>
  70. </dependency>
  71. <!-- DB 相关 -->
  72. <dependency>
  73. <groupId>cn.iocoder.boot</groupId>
  74. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.iocoder.boot</groupId>
  78. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  79. </dependency>
  80. <!-- Config 配置中心相关 -->
  81. <dependency>
  82. <groupId>cn.iocoder.boot</groupId>
  83. <artifactId>yudao-spring-boot-starter-config</artifactId>
  84. </dependency>
  85. <!-- Job 定时任务相关 -->
  86. <dependency>
  87. <groupId>cn.iocoder.boot</groupId>
  88. <artifactId>yudao-spring-boot-starter-job</artifactId>
  89. </dependency>
  90. <!-- 消息队列相关 -->
  91. <dependency>
  92. <groupId>cn.iocoder.boot</groupId>
  93. <artifactId>yudao-spring-boot-starter-mq</artifactId>
  94. </dependency>
  95. <!-- 服务保障相关 -->
  96. <dependency>
  97. <groupId>cn.iocoder.boot</groupId>
  98. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  99. </dependency>
  100. <!-- 监控相关 -->
  101. <dependency>
  102. <groupId>cn.iocoder.boot</groupId>
  103. <artifactId>yudao-spring-boot-starter-monitor</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>de.codecentric</groupId>
  107. <artifactId>spring-boot-admin-starter-server</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
  108. </dependency>
  109. <!-- Test 测试相关 -->
  110. <dependency>
  111. <groupId>cn.iocoder.boot</groupId>
  112. <artifactId>yudao-spring-boot-starter-test</artifactId>
  113. <scope>test</scope>
  114. </dependency>
  115. <!-- 工具类相关 -->
  116. <dependency>
  117. <groupId>cn.iocoder.boot</groupId>
  118. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.velocity</groupId>
  122. <artifactId>velocity-engine-core</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>cn.smallbun.screw</groupId>
  126. <artifactId>screw-core</artifactId> <!-- 实现数据库文档 -->
  127. </dependency>
  128. <!-- 三方云服务相关 -->
  129. <dependency>
  130. <groupId>com.xkcoding.justauth</groupId>
  131. <artifactId>justauth-spring-boot-starter</artifactId>
  132. </dependency>
  133. </dependencies>
  134. <build>
  135. <!-- 设置构建的 jar 包名 -->
  136. <finalName>${artifactId}</finalName>
  137. <plugins>
  138. <!-- 打包 -->
  139. <plugin>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-maven-plugin</artifactId>
  142. <configuration>
  143. <fork>true</fork>
  144. </configuration>
  145. <executions>
  146. <execution>
  147. <goals>
  148. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  149. </goals>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. </project>