Refactor dependencyManagement
to enable includes, added it for this
This commit is contained in:
parent
a5cc2611a6
commit
ceddc89fe4
25 changed files with 526 additions and 9 deletions
23
README.md
23
README.md
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue