Compare commits

..

No commits in common. "830974671af0b963efc84441b6a3d9873fa52af9" and "7cefca5d5f239fb32030ab1d4eb72fa774e42d48" have entirely different histories.

3 changed files with 4 additions and 6 deletions

View File

@ -1,8 +1,7 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# Changelog for "oidc-keycloak-library"
## [v1.0.1-SNAPSHOT]
## [v1.0.0]
- First release (#19143, #19891)
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

View File

@ -11,7 +11,7 @@
</parent>
<groupId>org.gcube.common</groupId>
<artifactId>oidc-keycloak-library</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<properties>
<keycloak-version>10.0.2</keycloak-version>
</properties>

View File

@ -144,7 +144,6 @@ public class KeycloakHelper {
newClientRepresentation.setPublicClient(false);
newClientRepresentation.setProtocol("openid-connect");
newClientRepresentation.setAuthorizationSettings(new ResourceServerRepresentation());
newClientRepresentation.setFullScopeAllowed(Boolean.FALSE);
try (Response response = realm.clients().create(newClientRepresentation)) {
if (!response.getStatusInfo().equals(Response.Status.CREATED)) {
throw new KeycloakResourceCreationException("While creating new client: " + clientId, response);