slf4j-jboss-logmanager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.slf4j</groupId> <artifactId>slf4j-jboss-logmanager</artifactId> <version>2.0.1.Final</version> </dependency>
<!-- ~ JBoss, Home of Professional Open Source. ~ ~ Copyright 2014 Red Hat, Inc., and individual contributors ~ as indicated by the @author tags. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <groupId>org.jboss.logging</groupId> <artifactId>logging-parent</artifactId> <version>1.0.0.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss.slf4j</groupId> <artifactId>slf4j-jboss-logmanager</artifactId> <packaging>jar</packaging> <version>2.0.1.Final</version> <name>SLF4J: JBoss Log Manager</name> <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false"> <connection>scm:git:git://github.com/jboss-logging/slf4j-jboss-logging.git</connection> <developerConnection>scm:git:git@github.com:jboss-logging/slf4j-jboss-logging.git</developerConnection> <url>https://github.com/jboss-logging/slf4j-jboss-logging/tree/main/</url> <tag>HEAD</tag> </scm> <developers> <developer> <name>James R. Perkins</name> <email>jperkins@redhat.com</email> <organization>Red Hat, Inc.</organization> <organizationUrl>https://redhat.com</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License 2.0</name> <url>https://repository.jboss.org/licenses/apache-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <version.org.jboss.logmanager>2.1.19.Final</version.org.jboss.logmanager> <version.org.slf4j>2.0.6</version.org.slf4j> <!-- Test dependencies --> <version.org.junit>5.9.2</version.org.junit> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${version.org.junit}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> <version>${version.org.jboss.logmanager}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.org.slf4j}</version> <scope>provided</scope> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>format-check</id> <build> <plugins> <!-- Validate formatting --> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <executions> <execution> <id>validate-format</id> <phase>validate</phase> <goals> <goal>validate</goal> </goals> </execution> <execution> <id>validate-format-resources</id> <phase>validate</phase> <goals> <goal>validate</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/resources</testSourceDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> <executions> <execution> <id>check-import-sort</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> <execution> <id>check-import-sort-resources</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/resources</testSourceDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>slf4j-legacy-test</id> <activation> <property> <name>legacy.test</name> </property> </activation> <properties> <version.org.slf4j>1.7.36</version.org.slf4j> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <skip>true</skip> <skipMain>true</skipMain> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <failIfNoTests>true</failIfNoTests> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>