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>
|
2022-11-09 01:16:35 +08:00
|
|
|
<version>2.1.0</version>
|
2020-11-05 01:13:51 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>common-web</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-07-12 21:14:07 +08:00
|
|
|
<dependency>
|
2021-08-29 00:56:16 +08:00
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-log</artifactId>
|
2021-07-12 21:14:07 +08:00
|
|
|
</dependency>
|
2020-11-05 01:13:51 +08:00
|
|
|
|
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>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
</dependency>
|
2021-01-21 18:54:49 +08:00
|
|
|
|
2021-03-02 20:40:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.logstash.logback</groupId>
|
|
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-06-12 23:33:29 +08:00
|
|
|
<!-- JWT工具 -->
|
2021-10-04 23:58:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
|
|
</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>
|
|
|
|
|
2020-11-05 01:13:51 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|