Micronaut logging support
Find a file
dependabot[bot] a590d64df4
Bump maven-dependency-plugin from 3.5.0 to 3.6.0 (#176)
Bumps [maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.5.0 to 3.6.0.
- [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.5.0...maven-dependency-plugin-3.6.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-dependency-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-02 12:39:20 +00:00
.github Build on version branches too (#148) 2023-05-16 11:50:46 +02:00
docs/features Remove build instructions, update/release is done by ci with gpg signing (#142) 2023-05-09 09:32:04 +02:00
src Remove unmaintained logback-contrib and replace by direct jackson (#155) 2023-05-17 12:35:15 +00:00
.markdownlint.yaml Maintain actions (#71) 2022-09-02 10:30:37 +02:00
.yamllint Maintain actions (#71) 2022-09-02 10:30:37 +02:00
LICENSE Initial commit 2020-08-05 21:40:49 +02:00
pom.xml Bump maven-dependency-plugin from 3.5.0 to 3.6.0 (#176) 2023-07-02 12:39:20 +00:00
README.md Refactor dependencyManagement to enable includes, added it for this (#141) 2023-05-09 09:33:33 +02:00

Micronaut Logging support

Apache License, Version 2.0, January 2004 Maven Central CI CI

Include in your pom.xml:

<dependency>
  <groupId>io.kokuwa.micronaut</groupId>
  <artifactId>micronaut-logging</artifactId>
  <version>${version.io.kokuwa.micronaut.logging}</version>
  <scope>runtime</scope>
</dependency>

Or use in dependencyManagement in pom.xml:

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>io.kokuwa.micronaut</groupId>
      <artifactId>micronaut-logging</artifactId>
      <version>${version.io.kokuwa.micronaut.logging}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
    <dependency>
      <groupId>io.micronaut</groupId>
      <artifactId>micronaut-bom</artifactId>
      <version>${version.io.micronaut}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

Features

Open Topics

  • configure mdc on refresh event
  • read serviceName and serviceVersion from yaml
  • support auto select appender with custom logback.xml
  • add maven site with jacoco / dependency updates for snapshot build