2021-05-25 10:00:36 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common</artifactId>
|
2023-01-13 18:43:40 +08:00
|
|
|
<version>${revision}</version>
|
2021-05-25 10:00:36 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common-web</artifactId>
|
2021-05-25 10:00:36 +08:00
|
|
|
|
|
|
|
<description>
|
2023-01-18 17:09:43 +08:00
|
|
|
ruoyi-common-web web服务
|
2021-05-25 10:00:36 +08:00
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-31 22:13:58 +08:00
|
|
|
<artifactId>ruoyi-common-json</artifactId>
|
2021-05-25 10:00:36 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common-redis</artifactId>
|
2021-05-25 10:00:36 +08:00
|
|
|
</dependency>
|
|
|
|
|
2023-01-18 17:09:43 +08:00
|
|
|
<!-- SpringBoot Web容器 -->
|
2021-09-22 11:10:10 +08:00
|
|
|
<dependency>
|
2023-01-18 17:09:43 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-09-22 11:10:10 +08:00
|
|
|
</dependency>
|
2023-01-18 17:09:43 +08:00
|
|
|
<!-- web 容器使用 undertow 性能更强 -->
|
2021-12-24 11:36:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
2021-12-24 11:36:02 +08:00
|
|
|
</dependency>
|
|
|
|
|
2023-04-16 12:26:14 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-01-31 21:30:01 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-captcha</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-12-24 11:36:02 +08:00
|
|
|
<dependency>
|
2023-01-18 17:09:43 +08:00
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-crypto</artifactId>
|
2021-12-24 11:36:02 +08:00
|
|
|
</dependency>
|
2021-05-25 10:00:36 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2021-10-29 09:14:49 +08:00
|
|
|
</project>
|