2023-04-26 19:48:44 +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-07-13 17:30:09 +08:00
|
|
|
<artifactId>qiaoba-common</artifactId>
|
2023-04-26 19:48:44 +08:00
|
|
|
<groupId>com.qiaoba</groupId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>qiaoba-common-base</artifactId>
|
|
|
|
|
2023-06-25 17:22:05 +08:00
|
|
|
<description>通用-基础模块</description>
|
|
|
|
|
2023-05-10 17:17:26 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
</dependency>
|
2023-05-16 17:28:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
2023-05-22 17:32:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
2023-05-10 17:17:26 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|