pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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-admin-server</artifactId>
  12. <packaging>jar</packaging>
  13. <name>yudao-admin-server</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. <!-- TODO 芋艿:多模块 -->
  22. <dependency>
  23. <groupId>cn.iocoder.boot</groupId>
  24. <artifactId>yudao-module-member-impl</artifactId>
  25. <version>${revision}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.iocoder.boot</groupId>
  29. <artifactId>yudao-module-system-impl</artifactId>
  30. <version>${revision}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-module-infra-impl</artifactId>
  35. <version>${revision}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.iocoder.boot</groupId>
  39. <artifactId>yudao-module-pay-impl</artifactId>
  40. <version>${revision}</version>
  41. </dependency>
  42. <!-- 默认引入bpm-activiti. 可以替换为bpm-flowable -->
  43. <dependency>
  44. <groupId>cn.iocoder.boot</groupId>
  45. <artifactId>yudao-module-bpm-activiti</artifactId>
  46. <version>${revision}</version>
  47. </dependency>
  48. <!-- 业务组件 -->
  49. <dependency>
  50. <groupId>cn.iocoder.boot</groupId>
  51. <artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.iocoder.boot</groupId>
  55. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  56. </dependency>
  57. <!-- spring boot 配置所需依赖 -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-configuration-processor</artifactId>
  61. <optional>true</optional>
  62. </dependency>
  63. <!-- 服务保障相关 -->
  64. <dependency>
  65. <groupId>cn.iocoder.boot</groupId>
  66. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  67. </dependency>
  68. <!-- 监控相关 -->
  69. <dependency>
  70. <groupId>cn.iocoder.boot</groupId>
  71. <artifactId>yudao-spring-boot-starter-monitor</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>de.codecentric</groupId>
  75. <artifactId>spring-boot-admin-starter-server</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
  76. </dependency>
  77. <!-- 三方云服务相关 -->
  78. <dependency>
  79. <groupId>com.xkcoding.justauth</groupId>
  80. <artifactId>justauth-spring-boot-starter</artifactId>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <!-- 设置构建的 jar 包名 -->
  85. <finalName>${artifactId}</finalName>
  86. <plugins>
  87. <!-- 打包 -->
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <configuration>
  92. <fork>true</fork>
  93. </configuration>
  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>