Skip to content

Commit

Permalink
Add OIDC capability
Browse files Browse the repository at this point in the history
  • Loading branch information
HerrDerb committed Jan 16, 2023
1 parent 014772c commit eac519b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ public interface Capability {
String OPENSHIFT = QUARKUS_PREFIX + "openshift";
String OPENSHIFT_CLIENT = OPENSHIFT + ".client";

String OIDC = QUARKUS_PREFIX + ".oidc";

/**
* Presence of an io.opentracing tracer (for example, Jaeger).
*/
Expand Down
5 changes: 5 additions & 0 deletions extensions/oidc/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<configuration>
<capabilities>
<provides>io.quarkus.oidc</provides>
</capabilities>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit eac519b

Please sign in to comment.