Deploy a REST Resource provider in kc 17

Hi,

We developed a Resource Provider while in kc 12-13 (Wildfly)
We used the examples provided by you as an example and also as an installation guide. (It seems is not updated any longer) at:

Now we need to move to kc 17 (Quarkus)

We’d like to deploy that component. Reading your docs seems there’s a previous step which is build
Where can I get the doc related to that.

In summary which is alternative to this procedure in kc 17 (Quarkus)?

./jboss-cli.sh --command=“module add --name=theModule --resources=theJar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi,org.keycloak.keycloak-server-spi-private,org.keycloak.keycloak-services,javax.ws.rs.api”

the registration proces in standalone.xml

<providers>
    ...
    <provider>module:theModule</provider>
</providers>

so it is published at:

http://theServer/auth/realms/theRealm/theEndpoint

Thanks in advance!

I’ve found the README.md at providers with instructions for custom providers installation


Add your custom provider JAR files in this directory.

Once you have your providers in this directory, run the following command to complete the installation:

${kc.home.dir}/bin/kc.sh build
--------------------

thanks