pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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.sale</groupId>
  23. <artifactId>feifan-module-sale-biz</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.newfeifan.zx</groupId>
  28. <artifactId>feifan-module-system-biz</artifactId>
  29. <version>${revision}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.newfeifan.zx</groupId>
  33. <artifactId>feifan-module-infra-biz</artifactId>
  34. <version>${revision}</version>
  35. </dependency>
  36. <!-- 会员中心。默认注释,保证编译速度 -->
  37. <dependency>
  38. <groupId>cn.newfeifan.zx</groupId>
  39. <artifactId>feifan-module-member-biz</artifactId>
  40. <version>${revision}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.newfeifan.zx</groupId>
  44. <artifactId>feifan-module-distri-biz</artifactId>
  45. <version>${revision}</version>
  46. </dependency>
  47. <!-- 数据报表。默认注释,保证编译速度 -->
  48. <!-- <dependency>-->
  49. <!-- <groupId>cn.newfeifan.zx</groupId>-->
  50. <!-- <artifactId>feifan-module-report-biz</artifactId>-->
  51. <!-- <version>${revision}</version>-->
  52. <!-- </dependency>-->
  53. <!-- 工作流。默认注释,保证编译速度 -->
  54. <!-- <dependency>-->
  55. <!-- <groupId>cn.newfeifan.zx</groupId>-->
  56. <!-- <artifactId>feifan-module-bpm-biz</artifactId>-->
  57. <!-- <version>${revision}</version>-->
  58. <!-- </dependency>-->
  59. <!-- 支付服务。默认注释,保证编译速度 -->
  60. <dependency>
  61. <groupId>cn.newfeifan.zx</groupId>
  62. <artifactId>feifan-module-pay-biz</artifactId>
  63. <version>${revision}</version>
  64. </dependency>
  65. <!-- 微信公众号模块。默认注释,保证编译速度 -->
  66. <dependency>
  67. <groupId>cn.newfeifan.zx</groupId>
  68. <artifactId>feifan-module-mp-biz</artifactId>
  69. <version>${revision}</version>
  70. </dependency>
  71. <!-- 商城相关模块。默认注释,保证编译速度-->
  72. <dependency>
  73. <groupId>cn.newfeifan.zx</groupId>
  74. <artifactId>feifan-module-promotion-biz</artifactId>
  75. <version>${revision}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>cn.newfeifan.zx</groupId>
  79. <artifactId>feifan-module-product-biz</artifactId>
  80. <version>${revision}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.newfeifan.zx</groupId>
  84. <artifactId>feifan-module-trade-biz</artifactId>
  85. <version>${revision}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>cn.newfeifan.zx</groupId>
  89. <artifactId>feifan-module-statistics-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. </dependencies>
  110. <build>
  111. <!-- 设置构建的 jar 包名 -->
  112. <finalName>${project.artifactId}</finalName>
  113. <plugins>
  114. <!-- 打包 -->
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. <version>${spring.boot.version}</version>
  119. <executions>
  120. <execution>
  121. <goals>
  122. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  123. </goals>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>