pom.xml 4.9 KB

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