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>
|
2021-02-05 06:53:45 +00:00
|
|
|
<version>7.0.0</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>log-business-requestapi</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!--日志api模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>log-api</artifactId>
|
2021-02-05 06:53:45 +00:00
|
|
|
<version>7.0.0</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-22 13:43:05 +00:00
|
|
|
<!--资源api模块-->
|
|
|
|
<!--aop获取注解属性-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>scanner-api</artifactId>
|
2021-02-05 06:53:45 +00:00
|
|
|
<version>7.0.0</version>
|
2020-12-22 13:43:05 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!-- web -->
|
|
|
|
<!-- 用于本模块中对controller的拦截器 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- aop -->
|
|
|
|
<!-- 用于本模块中对controller的拦截器 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|