.flattened-pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.iocoder.boot</groupId>
  6. <artifactId>yudao-server</artifactId>
  7. <version>2025.11-SNAPSHOT</version>
  8. <name>yudao-server</name>
  9. <description>后端 Server 的主项目,通过引入需要 yudao-module-xxx 的依赖,
  10. 从而实现提供 RESTful API 给 yudao-ui-admin、yudao-ui-user 等前端项目。
  11. 本质上来说,它就是个空壳(容器)!</description>
  12. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.iocoder.boot</groupId>
  16. <artifactId>yudao-module-system</artifactId>
  17. <version>2025.11-SNAPSHOT</version>
  18. <scope>compile</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>cn.iocoder.boot</groupId>
  22. <artifactId>yudao-module-infra</artifactId>
  23. <version>2025.11-SNAPSHOT</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.iocoder.boot</groupId>
  28. <artifactId>yudao-order-server</artifactId>
  29. <version>2025.11-SNAPSHOT</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-all-server</artifactId>
  35. <version>2025.11-SNAPSHOT</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-module-report</artifactId>
  41. <version>2025.11-SNAPSHOT</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-module-bpm</artifactId>
  47. <version>2025.11-SNAPSHOT</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-configuration-processor</artifactId>
  53. <version>3.5.8</version>
  54. <scope>compile</scope>
  55. <optional>true</optional>
  56. </dependency>
  57. <dependency>
  58. <groupId>cn.iocoder.boot</groupId>
  59. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  60. <version>2025.11-SNAPSHOT</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. </dependencies>
  64. <repositories>
  65. <repository>
  66. <id>huaweicloud</id>
  67. <name>huawei</name>
  68. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  69. </repository>
  70. <repository>
  71. <id>aliyunmaven</id>
  72. <name>aliyun</name>
  73. <url>https://maven.aliyun.com/repository/public</url>
  74. </repository>
  75. <repository>
  76. <snapshots>
  77. <enabled>false</enabled>
  78. </snapshots>
  79. <id>spring-milestones</id>
  80. <name>Spring Milestones</name>
  81. <url>https://repo.spring.io/milestone</url>
  82. </repository>
  83. <repository>
  84. <releases>
  85. <enabled>false</enabled>
  86. </releases>
  87. <id>spring-snapshots</id>
  88. <name>Spring Snapshots</name>
  89. <url>https://repo.spring.io/snapshot</url>
  90. </repository>
  91. </repositories>
  92. </project>