Bump org.keycloak:keycloak-quarkus-server from 22.0.2 to 22.0.3 (#57)

* Bump org.keycloak:keycloak-quarkus-server from 22.0.2 to 22.0.3

Bumps org.keycloak:keycloak-quarkus-server from 22.0.2 to 22.0.3.

---
updated-dependencies:
- dependency-name: org.keycloak:keycloak-quarkus-server
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Use java http client because keycloak api in incompatible

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stephan Schnabel <stephan.schnabel@posteo.de>
This commit is contained in:
dependabot[bot] 2023-09-15 11:47:38 +02:00 committed by GitHub
parent 79fada6ce8
commit fab113d912
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 56 additions and 35 deletions

View file

@ -80,7 +80,7 @@ public class KeycloakExtension implements BeforeAllCallback, ParameterResolver {
var target = ClientBuilder.newClient().target(url);
var token = Keycloak.getClientProvider().targetProxy(target, TokenService.class);
prometheus = new Prometheus(Keycloak.getClientProvider().targetProxy(target, PrometheusClient.class));
client = new KeycloakClient(keycloak, token);
client = new KeycloakClient(url, keycloak, token);
}
@Override