pom.xml 6.2 KB

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