pom.xml 5.1 KB

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