feat: add dependencies for json logging directly to POM
Some checks failed
release / Release (push) Failing after 1m8s

This commit is contained in:
Oliver Weyhmüller 2025-01-05 09:33:00 +01:00
parent e67aa25150
commit e3591ac3f1
Signed by: oliver
GPG key ID: 5286794099F934A3

15
pom.xml
View file

@ -81,7 +81,20 @@
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- JSON logging -->
<dependency>
<groupId>ch.qos.logback.contrib</groupId>
<artifactId>logback-json-classic</artifactId>
<version>${w9r.logback.json.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback.contrib</groupId>
<artifactId>logback-jackson</artifactId>
<version>${w9r.logback.json.version}</version>
</dependency>
<!-- End JSON logging -->
</dependencies>
<build>
<pluginManagement>
<plugins>