How to use a dependency what are not part of Quarkus' BOM in Quarkus extension?

163 Views Asked by At

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.

0

There are 0 best solutions below