<?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">
    <parent>
        <artifactId>hussar-support-log</artifactId>
        <groupId>com.jxdinfo.hussar.support</groupId>
        <version>9.5.7</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.jxdinfo.hussar.support.log</groupId>
    <artifactId>hussar-log-log4j2</artifactId>

   <dependencies>
       <dependency>
           <groupId>org.apache.logging.log4j</groupId>
           <artifactId>log4j-api</artifactId>
       </dependency>
       <dependency>
           <groupId>org.apache.logging.log4j</groupId>
           <artifactId>log4j-core</artifactId>
       </dependency>
       <dependency> <!-- 桥接：告诉Slf4j使用Log4j2 -->
           <groupId>org.apache.logging.log4j</groupId>
           <artifactId>log4j-slf4j-impl</artifactId>
       </dependency>

       <dependency><!-- 桥接：告诉commons logging使用Log4j2 -->
           <groupId>org.apache.logging.log4j</groupId>
           <artifactId>log4j-jcl</artifactId>
           <scope>provided</scope>
       </dependency>

       <dependency>
           <groupId>org.slf4j</groupId>
           <artifactId>slf4j-api</artifactId>
           <scope>provided</scope>
       </dependency>
       <dependency>
           <groupId>com.jxdinfo.hussar.support.log</groupId>
           <artifactId>hussar-log-core</artifactId>
       </dependency>
       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-web</artifactId>
           <scope>provided</scope>
       </dependency>
   </dependencies>

</project>
