Skip to content

Commit

Permalink
Add a capability for OIDC client extension
Browse files Browse the repository at this point in the history
As requested here:
quarkiverse/quarkus-openapi-generator#829 (review)

(cherry picked from commit deefc68)
  • Loading branch information
gsmet committed Nov 13, 2024
1 parent e52ef75 commit dbb8d4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ public interface Capability {
String OPENSHIFT_CLIENT = OPENSHIFT + ".client";

String OIDC = QUARKUS_PREFIX + ".oidc";
String OIDC_CLIENT = OIDC + ".client";

String KEYCLOAK_AUTHORIZATION = QUARKUS_PREFIX + ".keycloak.authorization";

Expand Down
5 changes: 5 additions & 0 deletions extensions/oidc-client/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<configuration>
<capabilities>
<provides>io.quarkus.oidc.client</provides>
</capabilities>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit dbb8d4f

Please sign in to comment.