pom.xml 4.5 KB

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