Reputation: 1
I'm trying to build a Quarkus extension that will use quarkus-logging-json
from io.quarkiverse.loggingjson
. This dependency is not a part of Quarkus BOM file. I cannot find any information how to add this kind of dependency into own extension in Quarkus' documents. I tried to do the same thing with Maven as is described for quarkus-undertrow
but with
<dependency>
<groupId>io.quarkiverse.loggingjson</groupId>
<artifactId>quarkus-logging-json</artifactId>
<version>3.0.0</version>
</dependency>
https://quarkus.io/guides/building-my-first-extension#basic-version-of-the-sample-greeting-extension . I want to use quarkus-logging-json
in my extension project.
Upvotes: 0
Views: 326