Skip to content

Commit

Permalink
Merge pull request #31150 from HerrDerb/add-keycloak-authorization-ca…
Browse files Browse the repository at this point in the history
…pability

Add keycloak authorization capability
  • Loading branch information
sberyozkin authored Feb 22, 2023
2 parents bb41b87 + 369ae40 commit 1165ee5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ public interface Capability {

String OIDC = QUARKUS_PREFIX + ".oidc";

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

/**
* Presence of an io.opentracing tracer (for example, Jaeger).
*/
Expand Down
7 changes: 6 additions & 1 deletion extensions/keycloak-authorization/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<configuration>
<capabilities>
<provides>io.quarkus.keycloak.authorization</provides>
</capabilities>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit 1165ee5

Please sign in to comment.