pom.xml 5.6 KB

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