Refactor dependencyManagement to enable includes, added it for this (#141)

This commit is contained in:
Stephan Schnabel 2023-05-09 09:33:33 +02:00 committed by GitHub
parent 491b2961f8
commit e4b7b18267
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 526 additions and 9 deletions

View file

@ -16,6 +16,29 @@ Include in your `pom.xml`:
</dependency>
```
Or use in `dependencyManagement` in `pom.xml`:
```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
* Version [3.x](https://github.com/kokuwaio/micronaut-logging/tree/main) is based on SLF4J 1.7 & Logback 1.2