pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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>com.yc.ship</groupId>
  7. <artifactId>ship-ota-server</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ship-server-web</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. 后端 Server 的主项目,通过引入需要 yudao-module-xxx 的依赖,
  16. 从而实现提供 RESTful API 给 yudao-ui-admin、yudao-ui-user 等前端项目。
  17. 本质上来说,它就是个空壳(容器)!
  18. </description>
  19. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  20. <properties>
  21. <revision>1.0.0</revision>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.yc.ship</groupId>
  26. <artifactId>module-system-biz</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.yc.ship</groupId>
  31. <artifactId>module-infra-biz</artifactId>
  32. <version>${revision}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.yc.ship</groupId>
  36. <artifactId>module-buss-biz</artifactId>
  37. <version>${revision}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.yc.ship</groupId>
  41. <artifactId>module-member-biz</artifactId>
  42. <version>${revision}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.yc.ship</groupId>
  46. <artifactId>ship-module-ota-biz</artifactId>
  47. <version>${revision}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.yc.ship</groupId>
  51. <artifactId>ship-module-otc-biz</artifactId>
  52. <version>${revision}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.yc.ship</groupId>
  56. <artifactId>ship-module-product-biz</artifactId>
  57. <version>${revision}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.yc.ship</groupId>
  61. <artifactId>ship-module-trade-biz</artifactId>
  62. <version>${revision}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.yc.ship</groupId>
  66. <artifactId>ship-module-resource-biz</artifactId>
  67. <version>${revision}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.yc.ship</groupId>
  71. <artifactId>ship-module-marketing-biz</artifactId>
  72. <version>${revision}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.yc.ship</groupId>
  76. <artifactId>ship-module-miniapplet</artifactId>
  77. <version>${revision}</version>
  78. </dependency>
  79. <!-- 业务组件 -->
  80. <dependency>
  81. <groupId>com.yc.ship</groupId>
  82. <artifactId>spring-boot-starter-biz-data-permission</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.yc.ship</groupId>
  86. <artifactId>spring-boot-starter-biz-tenant</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.yc.ship</groupId>
  90. <artifactId>spring-boot-starter-biz-ip</artifactId>
  91. </dependency>
  92. <!-- Web 相关 -->
  93. <dependency>
  94. <groupId>com.yc.ship</groupId>
  95. <artifactId>spring-boot-starter-security</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-validation</artifactId>
  100. </dependency>
  101. <!-- DB 相关 -->
  102. <dependency>
  103. <groupId>com.yc.ship</groupId>
  104. <artifactId>spring-boot-starter-mybatis</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.yc.ship</groupId>
  108. <artifactId>spring-boot-starter-redis</artifactId>
  109. </dependency>
  110. <!-- Job 定时任务相关 -->
  111. <dependency>
  112. <groupId>com.yc.ship</groupId>
  113. <artifactId>spring-boot-starter-job</artifactId>
  114. </dependency>
  115. <!-- 消息队列相关 -->
  116. <dependency>
  117. <groupId>com.yc.ship</groupId>
  118. <artifactId>spring-boot-starter-mq</artifactId>
  119. </dependency>
  120. <!-- Test 测试相关 -->
  121. <dependency>
  122. <groupId>com.yc.ship</groupId>
  123. <artifactId>spring-boot-starter-test</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. <!-- 工具类相关 -->
  127. <dependency>
  128. <groupId>com.yc.ship</groupId>
  129. <artifactId>spring-boot-starter-excel</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-starter-mail</artifactId>
  134. </dependency>
  135. <!-- 服务保障相关 -->
  136. <dependency>
  137. <groupId>com.yc.ship</groupId>
  138. <artifactId>spring-boot-starter-protection</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>me.zhyd.oauth</groupId>
  142. <artifactId>JustAuth</artifactId> <!-- 社交登陆(例如说,个人微信、企业微信等等) -->
  143. </dependency>
  144. <dependency>
  145. <groupId>com.xkcoding.justauth</groupId>
  146. <artifactId>justauth-spring-boot-starter</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.github.binarywang</groupId>
  150. <artifactId>wx-java-mp-spring-boot-starter</artifactId> <!-- 微信登录(公众号) -->
  151. </dependency>
  152. <dependency>
  153. <groupId>com.github.binarywang</groupId>
  154. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId> <!-- 微信登录(小程序) -->
  155. </dependency>
  156. <dependency>
  157. <groupId>com.anji-plus</groupId>
  158. <artifactId>captcha-spring-boot-starter</artifactId> <!-- 验证码,一般用于登录使用 -->
  159. </dependency>
  160. </dependencies>
  161. <build>
  162. <!-- 设置构建的 jar 包名 -->
  163. <finalName>${project.artifactId}</finalName>
  164. <plugins>
  165. <!-- 打包 -->
  166. <plugin>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-maven-plugin</artifactId>
  169. <version>${spring.boot.version}</version>
  170. <executions>
  171. <execution>
  172. <goals>
  173. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  174. </goals>
  175. </execution>
  176. </executions>
  177. </plugin>
  178. </plugins>
  179. </build>
  180. </project>