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>
|
2022-05-27 08:58:06 +00:00
|
|
|
<version>7.2.3</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>log-business-manage</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!--日志api模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>log-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--资源api模块-->
|
|
|
|
<!--用在资源控制器,资源扫描上-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>scanner-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</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>
|
|
|
|
|
2021-02-28 03:32:08 +00:00
|
|
|
<!--system的api-->
|
|
|
|
<!--查询用户-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>system-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-02-28 03:32:08 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--包装器模块-->
|
|
|
|
<!--包装结果-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>wrapper-api</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-02-28 03:32:08 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!--数据库sdk-->
|
|
|
|
<!--数据库dao框架-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>db-sdk-mp</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
2021-01-12 05:42:14 +00:00
|
|
|
<!--log-sdk-db-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>log-sdk-db</artifactId>
|
2021-05-14 14:11:05 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-01-12 05:42:14 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!--web模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|