Skip to content

Instantly share code, notes, and snippets.

@AdamBien
Last active December 2, 2021 12:49
Show Gist options
  • Save AdamBien/61fb5ef8d19fe012a9ed1dcc858b874d to your computer and use it in GitHub Desktop.
Save AdamBien/61fb5ef8d19fe012a9ed1dcc858b874d to your computer and use it in GitHub Desktop.
Add these extensions / dependencies to the dependencies section in your `pom.xml` to add MicroProfile support to Quarkus

A set of microprofile extensions for quarkus:

    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-smallrye-openapi</artifactId>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-smallrye-opentracing</artifactId>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-smallrye-fault-tolerance</artifactId>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-smallrye-health</artifactId>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-smallrye-metrics</artifactId>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-resteasy-jsonb</artifactId>
    </dependency>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-rest-client</artifactId>
    </dependency>
    <!--dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-smallrye-jwt</artifactId>
    </dependency-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment