pom.xml 7.6 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>cn.iocoder.boot</groupId>
  7. <artifactId>yudao</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-server</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. <dependencies>
  21. <dependency>
  22. <groupId>cn.iocoder.boot</groupId>
  23. <artifactId>yudao-module-system-biz</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.iocoder.boot</groupId>
  28. <artifactId>yudao-module-infra-biz</artifactId>
  29. <version>${revision}</version>
  30. </dependency>
  31. <!-- 会员中心。默认注释,保证编译速度 -->
  32. <!-- <dependency>-->
  33. <!-- <groupId>cn.iocoder.boot</groupId>-->
  34. <!-- <artifactId>yudao-module-member-biz</artifactId>-->
  35. <!-- <version>${revision}</version>-->
  36. <!-- </dependency>-->
  37. <!-- 数据报表。默认注释,保证编译速度 -->
  38. <!-- <dependency>-->
  39. <!-- <groupId>cn.iocoder.boot</groupId>-->
  40. <!-- <artifactId>yudao-module-report-biz</artifactId>-->
  41. <!-- <version>${revision}</version>-->
  42. <!-- </dependency>-->
  43. <!-- 工作流。默认注释,保证编译速度 -->
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-module-bpm-biz</artifactId>
  47. <version>${revision}</version>
  48. </dependency>
  49. <!-- 支付服务。默认注释,保证编译速度 -->
  50. <!-- <dependency>-->
  51. <!-- <groupId>cn.iocoder.boot</groupId>-->
  52. <!-- <artifactId>yudao-module-pay-biz</artifactId>-->
  53. <!-- <version>${revision}</version>-->
  54. <!-- </dependency>-->
  55. <!-- 微信公众号模块。默认注释,保证编译速度 -->
  56. <!--<dependency>
  57. <groupId>cn.iocoder.boot</groupId>
  58. <artifactId>yudao-module-mp-biz</artifactId>
  59. <version>${revision}</version>
  60. </dependency>-->
  61. <!-- 商城相关模块。默认注释,保证编译速度-->
  62. <!-- <dependency>-->
  63. <!-- <groupId>cn.iocoder.boot</groupId>-->
  64. <!-- <artifactId>yudao-module-promotion-biz</artifactId>-->
  65. <!-- <version>${revision}</version>-->
  66. <!-- </dependency>-->
  67. <!-- <dependency>-->
  68. <!-- <groupId>cn.iocoder.boot</groupId>-->
  69. <!-- <artifactId>yudao-module-product-biz</artifactId>-->
  70. <!-- <version>${revision}</version>-->
  71. <!-- </dependency>-->
  72. <!-- <dependency>-->
  73. <!-- <groupId>cn.iocoder.boot</groupId>-->
  74. <!-- <artifactId>yudao-module-trade-biz</artifactId>-->
  75. <!-- <version>${revision}</version>-->
  76. <!-- </dependency>-->
  77. <!-- <dependency>-->
  78. <!-- <groupId>cn.iocoder.boot</groupId>-->
  79. <!-- <artifactId>yudao-module-statistics-biz</artifactId>-->
  80. <!-- <version>${revision}</version>-->
  81. <!-- </dependency>-->
  82. <!-- CRM 相关模块。默认注释,保证编译速度 -->
  83. <!-- <dependency>-->
  84. <!-- <groupId>cn.iocoder.boot</groupId>-->
  85. <!-- <artifactId>yudao-module-crm-biz</artifactId>-->
  86. <!-- <version>${revision}</version>-->
  87. <!-- </dependency>-->
  88. <!-- ERP 相关模块。默认注释,保证编译速度 -->
  89. <!-- <dependency>-->
  90. <!-- <groupId>cn.iocoder.boot</groupId>-->
  91. <!-- <artifactId>yudao-module-erp-biz</artifactId>-->
  92. <!-- <version>${revision}</version>-->
  93. <!-- </dependency>-->
  94. <!-- 财务 报销管理模块 -->
  95. <dependency>
  96. <groupId>cn.iocoder.boot</groupId>
  97. <artifactId>yudao-module-expense-biz</artifactId>
  98. <version>${revision}</version>
  99. </dependency>
  100. <!-- 财务 收付款管理模块 -->
  101. <dependency>
  102. <groupId>cn.iocoder.boot</groupId>
  103. <artifactId>yudao-module-cash-biz</artifactId>
  104. <version>${revision}</version>
  105. </dependency>
  106. <!-- 财务 资产管理模块 -->
  107. <dependency>
  108. <groupId>cn.iocoder.boot</groupId>
  109. <artifactId>yudao-module-asset-biz</artifactId>
  110. <version>${revision}</version>
  111. </dependency>
  112. <!-- 财务 采购、销售合同管理模块 -->
  113. <dependency>
  114. <groupId>cn.iocoder.boot</groupId>
  115. <artifactId>yudao-module-contract-biz</artifactId>
  116. <version>${revision}</version>
  117. </dependency>
  118. <!-- 人事 员工相关模块。默认注释,保证编译速度 -->
  119. <dependency>
  120. <groupId>cn.iocoder.boot</groupId>
  121. <artifactId>yudao-module-employee-biz</artifactId>
  122. <version>${revision}</version>
  123. </dependency>
  124. <!-- 人事 员工关系相关模块。默认注释,保证编译速度 -->
  125. <dependency>
  126. <groupId>cn.iocoder.boot</groupId>
  127. <artifactId>yudao-module-relations-biz</artifactId>
  128. <version>${revision}</version>
  129. </dependency>
  130. <!-- 人事 假务相关模块。默认注释,保证编译速度 -->
  131. <dependency>
  132. <groupId>cn.iocoder.boot</groupId>
  133. <artifactId>yudao-module-holiday-biz</artifactId>
  134. <version>${revision}</version>
  135. </dependency>
  136. <!-- 人事 考勤相关模块。默认注释,保证编译速度 -->
  137. <dependency>
  138. <groupId>cn.iocoder.boot</groupId>
  139. <artifactId>yudao-module-attendance-biz</artifactId>
  140. <version>${revision}</version>
  141. </dependency>
  142. <!-- 客户相关模块。默认注释,保证编译速度 -->
  143. <dependency>
  144. <groupId>cn.iocoder.boot</groupId>
  145. <artifactId>yudao-module-customer-biz</artifactId>
  146. <version>${revision}</version>
  147. </dependency>
  148. <!-- spring boot 配置所需依赖 -->
  149. <dependency>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-configuration-processor</artifactId>
  152. <optional>true</optional>
  153. </dependency>
  154. <!-- 服务保障相关 -->
  155. <dependency>
  156. <groupId>cn.iocoder.boot</groupId>
  157. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  158. </dependency>
  159. </dependencies>
  160. <build>
  161. <!-- 设置构建的 jar 包名 -->
  162. <finalName>${project.artifactId}</finalName>
  163. <plugins>
  164. <!-- 打包 -->
  165. <plugin>
  166. <groupId>org.springframework.boot</groupId>
  167. <artifactId>spring-boot-maven-plugin</artifactId>
  168. <version>${spring.boot.version}</version>
  169. <executions>
  170. <execution>
  171. <goals>
  172. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  173. </goals>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. </plugins>
  178. </build>
  179. </project>