commons-logging-jboss-logging
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>commons-logging-jboss-logging</artifactId>
<version>2.0.0.Final</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ JBoss, Home of Professional Open Source.
~
~ Copyright 2018 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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>51</version>
<relativePath />
</parent>
<groupId>org.jboss.logging</groupId>
<artifactId>commons-logging-jboss-logging</artifactId>
<version>2.0.0.Final</version>
<name>Commons Logging to JBoss Logging</name>
<description>An Apache Commons Logging implementation which logs through a JBoss Logging logger.</description>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://repository.jboss.org/licenses/apache-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<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/commons-logging-jboss-logging.git</connection>
<developerConnection>scm:git:git@github.com:jboss-logging/commons-logging-jboss-logging.git</developerConnection>
<url>https://github.com/jboss-logging/commons-logging-jboss-logging/tree/main/</url>
<tag>v2.0.0.Final</tag>
</scm>
<properties>
<version.org.jboss.logging.jboss-logging>3.6.2.Final</version.org.jboss.logging.jboss-logging>
<version.org.jboss.logmanager.jboss-logmanager>3.1.2.Final</version.org.jboss.logmanager.jboss-logmanager>
<version.org.junit>5.13.4</version.org.junit>
<!-- Plugin versions -->
<version.central.publishing.maven.plugin>0.10.0</version.central.publishing.maven.plugin>
<version.formatter.maven.plugin>2.29.0</version.formatter.maven.plugin>
<version.impsort.maven.plugin>1.13.0</version.impsort.maven.plugin>
<!-- JDK configuration: require Java 17 to build -->
<jdk.min.version>17</jdk.min.version>
<maven.compiler.release>11</maven.compiler.release>
<!-- maven-release-plugin configuration -->
<autoVersionSubmodules>true</autoVersionSubmodules>
<releaseProfiles>central-release</releaseProfiles>
<signTag>true</signTag>
<tagNameFormat>v@{project.version}</tagNameFormat>
<arguments>-DskipTests -Dcentral.autoPublish=${central.autoPublish} -Dcentral.waitUntil=${central.waitUntil}</arguments>
<!-- Do not push changes by default when using the maven-release-plugin:prepare -->
<pushChanges>true</pushChanges>
<!-- Use the local directory when using perform -->
<localCheckout>true</localCheckout>
<!-- Maven Central properties -->
<central.sonatype.url>https://central.sonatype.com</central.sonatype.url>
<central.serverId>central</central.serverId>
<central.deploymentName>commons-logging-jboss-logging-${project.version}</central.deploymentName>
<central.autoPublish>true</central.autoPublish>
<central.waitUntil>validated</central.waitUntil>
<central.skipPublishing>false</central.skipPublishing>
</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.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${version.org.jboss.logging.jboss-logging}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>jboss-logmanager</artifactId>
<version>${version.org.jboss.logmanager.jboss-logmanager}</version>
<scope>test</scope>
</dependency>
<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>
<version>${version.formatter.maven.plugin}</version>
<dependencies>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>ide-config</artifactId>
<version>1.0.4.Final</version>
</dependency>
</dependencies>
<configuration>
<excludes>module-info.java</excludes>
<compilerCompliance>${maven.compiler.release}</compilerCompliance>
<!-- store outside of target to speed up formatting when mvn clean is used -->
<cachedir>.cache</cachedir>
<configFile>eclipse-code-formatter.xml</configFile>
<configXmlFile>wildfly-xml.properties</configXmlFile>
<lineEnding>LF</lineEnding>
<includeResources>true</includeResources>
<removeTrailingWhitespace>true</removeTrailingWhitespace>
</configuration>
<executions>
<execution>
<id>format-source</id>
<goals>
<goal>format</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>impsort-maven-plugin</artifactId>
<version>${version.impsort.maven.plugin}</version>
<configuration>
<excludes>module-info.java</excludes>
<compliance>${maven.compiler.release}</compliance>
<!-- store outside of target to speed up formatting when mvn clean is used -->
<cachedir>.cache</cachedir>
<groups>java.,javax.,jakarta.,org.,com.</groups>
<staticGroups>*</staticGroups>
<removeUnused>true</removeUnused>
</configuration>
<executions>
<execution>
<id>format-import-source</id>
<goals>
<goal>sort</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>io.github.dmlloyd.maven</groupId>
<artifactId>module-services-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>generate-services</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</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>
</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>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>central-release</id>
<distributionManagement>
<snapshotRepository>
<id>${central.serverId}</id>
<url>${central.sonatype.url}</url>
</snapshotRepository>
<repository>
<id>${central.serverId}</id>
<url>${central.sonatype.url}</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>aggregate-javadoc</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>package</phase>
</execution>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${version.central.publishing.maven.plugin}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>${central.serverId}</publishingServerId>
<autoPublish>${central.autoPublish}</autoPublish>
<waitUntil>${central.waitUntil}</waitUntil>
<deploymentName>${central.deploymentName}</deploymentName>
<skipPublishing>${central.skipPublishing}</skipPublishing>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>