pom.xml 5.8 KB

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