pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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>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. <dependency>
  32. <groupId>cn.iocoder.boot</groupId>
  33. <artifactId>yudao-spring-boot-starter-biz-error-code</artifactId>
  34. </dependency>
  35. <!-- 会员中心。默认注释,保证编译速度 -->
  36. <dependency>
  37. <groupId>cn.iocoder.boot</groupId>
  38. <artifactId>yudao-module-member-biz</artifactId>
  39. <version>${revision}</version>
  40. </dependency>
  41. <!-- 数据报表。默认注释,保证编译速度 -->
  42. <!-- <dependency>-->
  43. <!-- <groupId>cn.iocoder.boot</groupId>-->
  44. <!-- <artifactId>yudao-module-report-biz</artifactId>-->
  45. <!-- <version>${revision}</version>-->
  46. <!-- </dependency>-->
  47. <!-- 工作流。默认注释,保证编译速度 -->
  48. <!-- <dependency>-->
  49. <!-- <groupId>cn.iocoder.boot</groupId>-->
  50. <!-- <artifactId>yudao-module-bpm-biz</artifactId>-->
  51. <!-- <version>${revision}</version>-->
  52. <!-- </dependency>-->
  53. <!-- 支付服务。默认注释,保证编译速度 -->
  54. <dependency>
  55. <groupId>cn.iocoder.boot</groupId>
  56. <artifactId>yudao-module-pay-biz</artifactId>
  57. <version>${revision}</version>
  58. </dependency>
  59. <!-- 微信公众号模块。默认注释,保证编译速度 -->
  60. <!-- <dependency>-->
  61. <!-- <groupId>cn.iocoder.boot</groupId>-->
  62. <!-- <artifactId>yudao-module-mp-biz</artifactId>-->
  63. <!-- <version>${revision}</version>-->
  64. <!-- </dependency>-->
  65. <!-- 商城相关模块。默认注释,保证编译速度 -->
  66. <dependency>
  67. <groupId>cn.iocoder.boot</groupId>
  68. <artifactId>yudao-module-promotion-biz</artifactId>
  69. <version>${revision}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.iocoder.boot</groupId>
  73. <artifactId>yudao-module-product-biz</artifactId>
  74. <version>${revision}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.iocoder.boot</groupId>
  78. <artifactId>yudao-module-trade-biz</artifactId>
  79. <version>${revision}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>cn.iocoder.boot</groupId>
  83. <artifactId>yudao-module-statistics-biz</artifactId>
  84. <version>${revision}</version>
  85. </dependency>
  86. <!-- spring boot 配置所需依赖 -->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-configuration-processor</artifactId>
  90. <optional>true</optional>
  91. </dependency>
  92. <dependency>
  93. <groupId>cn.iocoder.boot</groupId>
  94. <artifactId>yudao-spring-boot-starter-banner</artifactId>
  95. </dependency>
  96. <!-- 服务保障相关 -->
  97. <dependency>
  98. <groupId>cn.iocoder.boot</groupId>
  99. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <!-- 设置构建的 jar 包名 -->
  104. <finalName>${project.artifactId}</finalName>
  105. <plugins>
  106. <!-- 打包 -->
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <version>${spring.boot.version}</version>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  115. </goals>
  116. </execution>
  117. </executions>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>