2020-11-18 17:14:47 +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-18 17:14:47 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>common-mybatis</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
2021-08-01 17:11:09 +08:00
|
|
|
<dependency>
|
2021-08-25 08:24:04 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2021-08-01 17:11:09 +08:00
|
|
|
</dependency>
|
|
|
|
|
2020-11-18 17:14:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
2024-01-30 13:45:30 +08:00
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
2020-11-18 17:14:47 +08:00
|
|
|
</dependency>
|
2022-04-10 11:24:29 +08:00
|
|
|
|
2021-12-11 04:46:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-web</artifactId>
|
2021-12-14 17:42:23 +08:00
|
|
|
<optional>true</optional>
|
2021-12-11 04:46:37 +08:00
|
|
|
</dependency>
|
2022-11-01 23:59:12 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
2024-02-01 17:34:15 +08:00
|
|
|
<artifactId>common-security</artifactId>
|
2022-11-01 23:59:12 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-18 17:14:47 +08:00
|
|
|
</dependencies>
|
2021-03-20 23:58:50 +08:00
|
|
|
</project>
|