pom.xml 4.3 KB

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