2020-11-05 01:13:51 +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>
|
|
|
|
<artifactId>youlai-common</artifactId>
|
|
|
|
<groupId>com.youlai</groupId>
|
2024-02-29 11:51:46 +08:00
|
|
|
<version>3.1.0</version>
|
2020-11-05 01:13:51 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>common-web</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-10-31 17:09:20 +08:00
|
|
|
|
2020-11-05 01:13:51 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
2024-02-09 23:31:30 +08:00
|
|
|
<artifactId>common-core</artifactId>
|
2020-11-05 01:13:51 +08:00
|
|
|
</dependency>
|
|
|
|
|
2022-08-04 22:07:12 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-05 01:13:51 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2021-08-29 00:56:16 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2021-08-25 08:24:04 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-httpclient</artifactId>
|
2020-11-05 01:13:51 +08:00
|
|
|
</dependency>
|
2021-01-21 18:54:49 +08:00
|
|
|
|
2021-03-01 19:26:44 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2022-05-27 22:53:46 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-11-10 07:27:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-06-06 01:02:44 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
2024-02-01 17:34:15 +08:00
|
|
|
<artifactId>common-security</artifactId>
|
2023-06-06 01:02:44 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2023-09-27 18:21:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-05 01:13:51 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|