42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
|
|
<?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>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-parent</artifactId>
|
||
|
|
<version>2.0.9</version>
|
||
|
|
<relativePath>../parent/pom.xml</relativePath>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>slf4j-simple</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>SLF4J Simple Provider</name>
|
||
|
|
<description>SLF4J Simple Provider</description>
|
||
|
|
<url>http://www.slf4j.org</url>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<module-name>org.slf4j.simple</module-name>
|
||
|
|
<slf4j.provider.implementation>org.slf4j.simple.SimpleServiceProvider</slf4j.provider.implementation>
|
||
|
|
<slf4j.provider.type>simple</slf4j.provider.type>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-api</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-api</artifactId>
|
||
|
|
<type>test-jar</type>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|