| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-server</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <name>yudao-server</name>
- <description>后端 Server 的主项目,通过引入需要 yudao-module-xxx 的依赖,
- 从而实现提供 RESTful API 给 yudao-ui-admin、yudao-ui-user 等前端项目。
- 本质上来说,它就是个空壳(容器)!</description>
- <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
- <dependencies>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-system</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-infra</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-order-server</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-all-server</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-report</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-bpm</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <version>3.5.8</version>
- <scope>compile</scope>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-spring-boot-starter-protection</artifactId>
- <version>2025.11-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>huaweicloud</id>
- <name>huawei</name>
- <url>https://mirrors.huaweicloud.com/repository/maven/</url>
- </repository>
- <repository>
- <id>aliyunmaven</id>
- <name>aliyun</name>
- <url>https://maven.aliyun.com/repository/public</url>
- </repository>
- <repository>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- <id>spring-milestones</id>
- <name>Spring Milestones</name>
- <url>https://repo.spring.io/milestone</url>
- </repository>
- <repository>
- <releases>
- <enabled>false</enabled>
- </releases>
- <id>spring-snapshots</id>
- <name>Spring Snapshots</name>
- <url>https://repo.spring.io/snapshot</url>
- </repository>
- </repositories>
- </project>
|