roses/kernel-d-log/log-api/pom.xml

66 lines
2.2 KiB
XML
Raw Normal View History

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>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-d-log</artifactId>
2023-04-08 03:40:38 +00:00
<version>7.4.0</version>
2020-12-11 10:18:48 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>log-api</artifactId>
<packaging>jar</packaging>
<dependencies>
<!--auth模块的api-->
<!--记录日志时候有可能需要记录当前登录用户id-->
<!--如果不要记录当前登录用户id时就不用本模块所以optional=true-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>auth-api</artifactId>
2021-05-14 14:11:05 +00:00
<version>${roses.version}</version>
2020-12-11 10:18:48 +00:00
<optional>true</optional>
</dependency>
<!--参数校验模块-->
<!--包含带参数校验注解的类-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<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>
<groupId>cn.stylefeng.roses</groupId>
<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>
2022-09-07 06:53:09 +00:00
<!--system api-->
<!--用在json响应用户id的转化-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>system-api</artifactId>
<version>${roses.version}</version>
</dependency>
2020-12-11 10:18:48 +00:00
<!--web-->
<!--LogRecordFactory快速创建http类的日志参数会用到-->
<!--如果不要记录当前请求的http接口信息就不用本模块所以optional=true-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>