2020-12-11 10:18:48 +00: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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
2024-06-29 16:41:59 +00:00
|
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<artifactId>kernel-d-log</artifactId>
|
2024-11-11 14:44:24 +00:00
|
|
|
|
<version>8.3.2</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>log-api</artifactId>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2023-06-17 13:53:33 +00:00
|
|
|
|
<!--sys系统模块-->
|
|
|
|
|
<!--用来获取userId的包装转化-->
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2023-07-12 02:22:03 +00:00
|
|
|
|
<artifactId>system-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--参数校验模块-->
|
|
|
|
|
<!--包含带参数校验注解的类-->
|
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<artifactId>validator-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--数据库模块 api-->
|
|
|
|
|
<!--分页查询需要用到PageResult相关类-->
|
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<artifactId>db-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--web-->
|
|
|
|
|
<!--LogRecordFactory快速创建http类的日志参数会用到-->
|
|
|
|
|
<!--如果不要记录当前请求的http接口信息,就不用本模块,所以optional=true-->
|
|
|
|
|
<dependency>
|
2024-08-03 08:21:05 +00:00
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|