pom.xml 6.2 KB

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