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>
|
2021-06-19 12:36:51 +08:00
|
|
|
<version>2.0.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>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
2020-11-05 01:13:51 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2020-11-17 20:23:21 +08:00
|
|
|
<optional>true</optional>
|
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>
|
|
|
|
|
2021-03-09 16:38:55 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lionsoul</groupId>
|
|
|
|
<artifactId>ip2region</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.dozermapper</groupId>
|
|
|
|
<artifactId>dozer-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-05 01:13:51 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|