slf4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openidentityplatform.commons.i18n-framework</groupId>
<artifactId>slf4j</artifactId>
<version>3.1.2</version>
</dependency><?xml version="1.0"?>
<!--
! CDDL HEADER START
!
! The contents of this file are subject to the terms of the
! Common Development and Distribution License, Version 1.0 only
! (the "License"). You may not use this file except in compliance
! with the License.
!
! You can obtain a copy of the license at legal/CDDLv1_0.txt or
! http://forgerock.org/license/CDDLv1.0.html.
! See the License for the specific language governing permissions
! and limitations under the License.
!
! When distributing Covered Code, include this CDDL HEADER in each
! file and include the License file at legal/CDDLv1_0.txt. If applicable,
! add the following below this CDDL HEADER, with the fields enclosed
! by brackets "[]" replaced with your own identifying information:
! Portions Copyright [yyyy] [name of copyright owner]
!
! CDDL HEADER END
!
! Copyright 2011 ForgeRock AS
!
-->
<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>
<artifactId>i18n-framework</artifactId>
<groupId>org.openidentityplatform.commons</groupId>
<version>3.1.2</version>
</parent>
<groupId>org.openidentityplatform.commons.i18n-framework</groupId>
<artifactId>slf4j</artifactId>
<name>${project.groupId}.${project.artifactId}</name>
<description>This module provides an interface for efficiently writing localized messages out to a SLF4J Logger</description>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.openidentityplatform.commons.i18n-framework</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
<build><finalName>${project.groupId}.${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.openidentityplatform.commons.i18n-framework</groupId>
<artifactId>maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<phase>generate-test-sources</phase>
<goals>
<goal>generate-test-messages</goal>
</goals>
<configuration>
<messageFiles>
<messageFile>org/forgerock/i18n/slf4j/my_test.properties</messageFile>
</messageFiles>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>org.forgerock.i18n.slf4j.*</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<link>http://www.slf4j.org/apidocs</link>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://www.slf4j.org/apidocs</link>
</links>
</configuration>
</plugin>
</plugins>
</reporting>
</project>