Bumps [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.0 to 2.0.1. - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_2.0.0...v_2.0.1) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
412 lines
14 KiB
XML
412 lines
14 KiB
XML
<?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>
|
|
|
|
<groupId>io.kokuwa.micronaut</groupId>
|
|
<artifactId>micronaut-logging</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
|
|
<name>Logging Support for Micronaut</name>
|
|
<description>Enhanced logging using MDC or request header.</description>
|
|
<url>https://github.com/kokuwaio/micronaut-logging</url>
|
|
<inceptionYear>2020</inceptionYear>
|
|
<organization>
|
|
<name>Kokuwa.io</name>
|
|
<url>http://kokuwa.io</url>
|
|
</organization>
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>sschnabe</id>
|
|
<name>Stephan Schnabel</name>
|
|
<url>https://github.com/sschnabe</url>
|
|
<email>stephan@grayc.de</email>
|
|
<organization>GrayC GmbH</organization>
|
|
<organizationUrl>https://grayc.de</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<url>https://github.com/kokuwaio/micronaut-logging</url>
|
|
<connection>scm:git:https://github.com/kokuwaio/micronaut-logging.git</connection>
|
|
<developerConnection>scm:git:https://github.com/kokuwaio/micronaut-logging.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>github</system>
|
|
<url>https://github.com/kokuwaio/micronaut-logging/issues</url>
|
|
</issueManagement>
|
|
<ciManagement>
|
|
<system>github</system>
|
|
<url>https://github.com/kokuwaio/micronaut-logging/actions</url>
|
|
</ciManagement>
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>sonatype-nexus</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>sonatype-nexus</id>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
|
|
<!-- ===================================================================== -->
|
|
<!-- ============================== Build ================================ -->
|
|
<!-- ===================================================================== -->
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.propertiesEncoding>ISO-8859-1</project.build.propertiesEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<maven.compiler.parameters>true</maven.compiler.parameters>
|
|
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
|
|
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
|
|
|
|
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
|
|
|
|
<checkstyle.config.location>checkstyle.xml</checkstyle.config.location>
|
|
<checkstyle.suppressions.location>checkstyle-suppression.xml</checkstyle.suppressions.location>
|
|
<checkstyle.includeTestSourceDirectory>true</checkstyle.includeTestSourceDirectory>
|
|
|
|
<!-- ===================================================================== -->
|
|
<!-- ============================= Versions ============================== -->
|
|
<!-- ===================================================================== -->
|
|
|
|
<!-- plugins -->
|
|
|
|
<version.org.apache.maven.plugins.checkstyle>3.2.0</version.org.apache.maven.plugins.checkstyle>
|
|
<version.org.apache.maven.plugins.clean>3.2.0</version.org.apache.maven.plugins.clean>
|
|
<version.org.apache.maven.plugins.compiler>3.10.1</version.org.apache.maven.plugins.compiler>
|
|
<version.org.apache.maven.plugins.dependency_>3.3.0</version.org.apache.maven.plugins.dependency_>
|
|
<version.org.apache.maven.plugins.deploy>3.0.0</version.org.apache.maven.plugins.deploy>
|
|
<version.org.apache.maven.plugins.gpg>3.0.1</version.org.apache.maven.plugins.gpg>
|
|
<version.org.apache.maven.plugins.install>3.0.1</version.org.apache.maven.plugins.install>
|
|
<version.org.apache.maven.plugins.javadoc>3.4.1</version.org.apache.maven.plugins.javadoc>
|
|
<version.org.apache.maven.plugins.jar>3.2.2</version.org.apache.maven.plugins.jar>
|
|
<version.org.apache.maven.plugins.release>3.0.0-M6</version.org.apache.maven.plugins.release>
|
|
<version.org.apache.maven.plugins.resources>3.3.0</version.org.apache.maven.plugins.resources>
|
|
<version.org.apache.maven.plugins.source>3.2.1</version.org.apache.maven.plugins.source>
|
|
<version.org.apache.maven.plugins.surefire>3.0.0-M7</version.org.apache.maven.plugins.surefire>
|
|
<version.org.codehaus.mojo.tidy>1.1.0</version.org.codehaus.mojo.tidy>
|
|
<version.org.sonatype.plugins.nexus-staging>1.6.13</version.org.sonatype.plugins.nexus-staging>
|
|
<version.com.puppycrawl.tools.checkstyle>10.3.3</version.com.puppycrawl.tools.checkstyle>
|
|
<version.io.kokuwa.checkstyle>0.5.6</version.io.kokuwa.checkstyle>
|
|
|
|
<!-- dependencies -->
|
|
|
|
<version.ch.qos.logback>1.4.0</version.ch.qos.logback>
|
|
<version.ch.qos.logback.contrib>0.1.5</version.ch.qos.logback.contrib>
|
|
<version.io.micronaut>3.6.3</version.io.micronaut>
|
|
<version.org.slf4j.api>2.0.1</version.org.slf4j.api>
|
|
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- micronaut -->
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-bom</artifactId>
|
|
<version>${version.io.micronaut}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<!-- slf4j -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${version.org.slf4j.api}</version>
|
|
</dependency>
|
|
|
|
<!-- logback -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${version.ch.qos.logback}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback.contrib</groupId>
|
|
<artifactId>logback-json-classic</artifactId>
|
|
<version>${version.ch.qos.logback.contrib}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback.contrib</groupId>
|
|
<artifactId>logback-json-core</artifactId>
|
|
<version>${version.ch.qos.logback.contrib}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback.contrib</groupId>
|
|
<artifactId>logback-jackson</artifactId>
|
|
<version>${version.ch.qos.logback.contrib}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- micronaut -->
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-runtime</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micronaut.security</groupId>
|
|
<artifactId>micronaut-security</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micronaut.test</groupId>
|
|
<artifactId>micronaut-test-junit5</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-http-client</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-http-server-netty</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micronaut.security</groupId>
|
|
<artifactId>micronaut-security-jwt</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- logback -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback.contrib</groupId>
|
|
<artifactId>logback-json-classic</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback.contrib</groupId>
|
|
<artifactId>logback-jackson</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.checkstyle}</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
<artifactId>checkstyle</artifactId>
|
|
<version>${version.com.puppycrawl.tools.checkstyle}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.kokuwa</groupId>
|
|
<artifactId>maven-parent</artifactId>
|
|
<version>${version.io.kokuwa.checkstyle}</version>
|
|
<type>zip</type>
|
|
<classifier>checkstyle</classifier>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.clean}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.compiler}</version>
|
|
<configuration>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-inject-java</artifactId>
|
|
<version>${version.io.micronaut}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.dependency_}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.deploy}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.gpg}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.install}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.javadoc}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.jar}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.release}</version>
|
|
<configuration>
|
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
|
<releaseProfiles>release</releaseProfiles>
|
|
<localCheckout>true</localCheckout>
|
|
<signTag>true</signTag>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.resources}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.source}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${version.org.apache.maven.plugins.surefire}</version>
|
|
<configuration>
|
|
<failIfNoTests>true</failIfNoTests>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>tidy-maven-plugin</artifactId>
|
|
<version>${version.org.codehaus.mojo.tidy}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<version>${version.org.sonatype.plugins.nexus-staging}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
|
|
<!-- add source for downstream projects -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- fail if any pom is dirty -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>tidy-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- fail if checkstyle reports problems -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- add javadoc for downstream projects -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- sign documents before upload -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- autoclose sonatype nexus repo -->
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<serverId>sonatype-nexus</serverId>
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|