iqnev / quarkus-extension-reproducer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

  1. Begin by building the provided extension on your local machine using the command
mvn clean install
  1. Next, integrate the extension into your user application by adding the appropriate Maven dependency to your project's configuration:
<dependency>
  <groupId>quarkus.extensions.demo</groupId>
  <artifactId>runtime</artifactId>
  <version>0.0.1-SNAPSHOT</version>
</dependency>
  1. When you execute your user application, the console should display the following message:

If you run the user application in test mode, you will observe:

The current class implementation is: demo.runtime.impl.DemoProviderImpl, with profile mode: TEST."

instead,

The current class implementation is: demo.runtime.impl.DemoCustomProvider, with profile mode: TEST.

About


Languages

Language:Java 100.0%