pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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.newfeifan.zx</groupId>
  7. <artifactId>feifan</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>feifan-server</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. 后端 Server 的主项目,通过引入需要 feifan-module-xxx 的依赖,
  16. 从而实现提供 RESTful API 给 feifan-ui-admin、feifan-ui-user 等前端项目。
  17. 本质上来说,它就是个空壳(容器)!
  18. </description>
  19. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.newfeifan.zx</groupId>
  23. <artifactId>feifan-module-system-biz</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.newfeifan.zx</groupId>
  28. <artifactId>feifan-module-infra-biz</artifactId>
  29. <version>${revision}</version>
  30. </dependency>
  31. <!-- 会员中心。默认注释,保证编译速度 -->
  32. <dependency>
  33. <groupId>cn.newfeifan.zx</groupId>
  34. <artifactId>feifan-module-member-biz</artifactId>
  35. <version>${revision}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.newfeifan.zx</groupId>
  39. <artifactId>feifan-module-distri-biz</artifactId>
  40. <version>${revision}</version>
  41. </dependency>
  42. <!-- 数据报表。默认注释,保证编译速度 -->
  43. <!-- <dependency>-->
  44. <!-- <groupId>cn.newfeifan.zx</groupId>-->
  45. <!-- <artifactId>feifan-module-report-biz</artifactId>-->
  46. <!-- <version>${revision}</version>-->
  47. <!-- </dependency>-->
  48. <!-- 工作流。默认注释,保证编译速度 -->
  49. <!-- <dependency>-->
  50. <!-- <groupId>cn.newfeifan.zx</groupId>-->
  51. <!-- <artifactId>feifan-module-bpm-biz</artifactId>-->
  52. <!-- <version>${revision}</version>-->
  53. <!-- </dependency>-->
  54. <!-- 支付服务。默认注释,保证编译速度 -->
  55. <dependency>
  56. <groupId>cn.newfeifan.zx</groupId>
  57. <artifactId>feifan-module-pay-biz</artifactId>
  58. <version>${revision}</version>
  59. </dependency>
  60. <!-- 微信公众号模块。默认注释,保证编译速度 -->
  61. <dependency>
  62. <groupId>cn.newfeifan.zx</groupId>
  63. <artifactId>feifan-module-mp-biz</artifactId>
  64. <version>${revision}</version>
  65. </dependency>
  66. <!-- 商城相关模块。默认注释,保证编译速度-->
  67. <dependency>
  68. <groupId>cn.newfeifan.zx</groupId>
  69. <artifactId>feifan-module-promotion-biz</artifactId>
  70. <version>${revision}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>cn.newfeifan.zx</groupId>
  74. <artifactId>feifan-module-product-biz</artifactId>
  75. <version>${revision}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>cn.newfeifan.zx</groupId>
  79. <artifactId>feifan-module-trade-biz</artifactId>
  80. <version>${revision}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.newfeifan.zx</groupId>
  84. <artifactId>feifan-module-statistics-biz</artifactId>
  85. <version>${revision}</version>
  86. </dependency>
  87. <dependency><!-- 店铺商户所在的新增模块 add by Ben 20240315 -->
  88. <groupId>cn.newfeifan.zx</groupId>
  89. <artifactId>feifan-module-sale-biz</artifactId>
  90. <version>${revision}</version>
  91. </dependency>
  92. <!-- CRM 相关模块。默认注释,保证编译速度 -->
  93. <!-- <dependency>-->
  94. <!-- <groupId>cn.newfeifan.zx</groupId>-->
  95. <!-- <artifactId>feifan-module-crm-biz</artifactId>-->
  96. <!-- <version>${revision}</version>-->
  97. <!-- </dependency>-->
  98. <!-- spring boot 配置所需依赖 -->
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-configuration-processor</artifactId>
  102. <optional>true</optional>
  103. </dependency>
  104. <!-- 服务保障相关 -->
  105. <dependency>
  106. <groupId>cn.newfeifan.zx</groupId>
  107. <artifactId>feifan-spring-boot-starter-protection</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>cn.newfeifan.zx</groupId>
  111. <artifactId>feifan-module-distri-biz</artifactId>
  112. <version>${revision}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>cn.newfeifan.zx</groupId>
  116. <artifactId>feifan-module-trade-biz</artifactId>
  117. <version>${revision}</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <!-- 设置构建的 jar 包名 -->
  122. <finalName>${project.artifactId}</finalName>
  123. <plugins>
  124. <!-- 打包 -->
  125. <plugin>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-maven-plugin</artifactId>
  128. <version>${spring.boot.version}</version>
  129. <executions>
  130. <execution>
  131. <goals>
  132. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  133. </goals>
  134. </execution>
  135. </executions>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. </project>