pom.xml 5.6 KB

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