pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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. <dependency>
  56. <groupId>cn.iocoder.boot</groupId>
  57. <artifactId>yudao-module-mp-biz</artifactId>
  58. <version>${revision}</version>
  59. </dependency>
  60. <!-- 商城相关模块。默认注释,保证编译速度-->
  61. <dependency>
  62. <groupId>cn.iocoder.boot</groupId>
  63. <artifactId>yudao-module-promotion-biz</artifactId>
  64. <version>${revision}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.iocoder.boot</groupId>
  68. <artifactId>yudao-module-product-biz</artifactId>
  69. <version>${revision}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.iocoder.boot</groupId>
  73. <artifactId>yudao-module-trade-biz</artifactId>
  74. <version>${revision}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.iocoder.boot</groupId>
  78. <artifactId>yudao-module-statistics-biz</artifactId>
  79. <version>${revision}</version>
  80. </dependency>
  81. <!-- CRM 相关模块。默认注释,保证编译速度 -->
  82. <!-- <dependency>-->
  83. <!-- <groupId>cn.iocoder.boot</groupId>-->
  84. <!-- <artifactId>yudao-module-crm-biz</artifactId>-->
  85. <!-- <version>${revision}</version>-->
  86. <!-- </dependency>-->
  87. <!-- ERP 相关模块。默认注释,保证编译速度 -->
  88. <!-- <dependency>-->
  89. <!-- <groupId>cn.iocoder.boot</groupId>-->
  90. <!-- <artifactId>yudao-module-erp-biz</artifactId>-->
  91. <!-- <version>${revision}</version>-->
  92. <!-- </dependency>-->
  93. <dependency>
  94. <groupId>cn.iocoder.boot</groupId>
  95. <artifactId>yudao-module-ai-biz</artifactId>
  96. <version>${revision}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>cn.iocoder.boot</groupId>
  100. <artifactId>yudao-module-game-biz</artifactId>
  101. <version>${revision}</version>
  102. </dependency>
  103. <!-- spring boot 配置所需依赖 -->
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-configuration-processor</artifactId>
  107. <optional>true</optional>
  108. </dependency>
  109. <!-- 服务保障相关 -->
  110. <dependency>
  111. <groupId>cn.iocoder.boot</groupId>
  112. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <!-- 设置构建的 jar 包名 -->
  117. <finalName>${project.artifactId}</finalName>
  118. <plugins>
  119. <!-- 打包 -->
  120. <plugin>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-maven-plugin</artifactId>
  123. <version>${spring.boot.version}</version>
  124. <executions>
  125. <execution>
  126. <goals>
  127. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  128. </goals>
  129. </execution>
  130. </executions>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-deploy-plugin</artifactId>
  135. <version>3.1.2</version>
  136. <!-- 可以根据需要添加其他配置 -->
  137. </plugin>
  138. </plugins>
  139. </build>
  140. <!-- 其他配置 -->
  141. <distributionManagement>
  142. <repository>
  143. <id>maven-snapshots</id>
  144. <url>http://42.194.163.46:8081/repository/maven-releases/</url>
  145. </repository>
  146. <snapshotRepository>
  147. <id>maven-releases</id>
  148. <url>http://42.194.163.46:8081/repository/maven-snapshots/</url>
  149. </snapshotRepository>
  150. </distributionManagement>
  151. </project>