2022-12-07 18:14:38 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-01-28 12:40:02 +08:00
|
|
|
<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">
|
2022-12-07 18:14:38 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>plusone-basic</artifactId>
|
|
|
|
<groupId>xyz.zhouxy</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>plusone-basic-common</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
<artifactId>sa-token-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-02-09 00:37:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-12-07 18:14:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>xyz.zhouxy.plusone</groupId>
|
|
|
|
<artifactId>plusone-commons</artifactId>
|
2023-02-19 04:21:39 +08:00
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
2022-12-07 18:14:38 +08:00
|
|
|
</dependency>
|
2022-12-14 13:41:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>xyz.zhouxy.plusone</groupId>
|
|
|
|
<artifactId>plusone-validator</artifactId>
|
2023-04-04 00:24:31 +08:00
|
|
|
<version>0.1.3-SNAPSHOT</version>
|
2022-12-14 13:41:37 +08:00
|
|
|
</dependency>
|
2022-12-07 18:14:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>xyz.zhouxy.plusone</groupId>
|
|
|
|
<artifactId>plusone-exception-handler</artifactId>
|
2023-04-16 00:06:36 +08:00
|
|
|
<version>0.0.9-SNAPSHOT</version>
|
2022-12-07 18:14:38 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|