From 6f378deb74aec497543bfd5b3a116d4ea9a5c0f8 Mon Sep 17 00:00:00 2001 From: soimugeo Date: Wed, 20 Nov 2024 13:40:49 +0200 Subject: [PATCH] update ipc --- README.md | 2 ++ pom.xml | 4 ++-- src/main/resources/application.yaml | 6 ++++-- src/test/resources/application.yaml | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e71cec6..6e64ab7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # webprotege-user-management-service This service is a wrapper over over user management systems such as AD , Keycloak or any service that allows user manipulation and user querying + +Keep in mind that for this to work the keycloak clientId and clientSecret needs to be configured. diff --git a/pom.xml b/pom.xml index 7fd9b01..c028247 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ edu.stanford.protege webprotege-user-management-service - 1.0.1 + 1.0.2 webprotege-user-management Microservice responsible for user management, integration with external systems that handle user management @@ -55,7 +55,7 @@ edu.stanford.protege webprotege-ipc - 1.0.1 + 1.0.8 org.keycloak diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index 7e77cb0..e712e89 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -1,7 +1,9 @@ server: port: 7761 -logging.level.root: DEBUG +logging: + level: + root: DEBUG spring: application: @@ -22,7 +24,7 @@ webprotege: serverUrl: http://webprotege-local.edu/auth realmName: webprotege clientId: user-management - clientSecret: d4c1e0f1-599f-411c-bc1b-0fafb05424ac + clientSecret: 448ae58e-a9f0-4fab-92fe-650bfd5f9e57 username: admin password: password diff --git a/src/test/resources/application.yaml b/src/test/resources/application.yaml index 8a37c2d..3ba7baa 100644 --- a/src/test/resources/application.yaml +++ b/src/test/resources/application.yaml @@ -17,7 +17,7 @@ webprotege: keycloak: serverUrl: http://webprotege-local.edu/auth realmName: webprotege - clientId: machine-client - clientSecret: MAtkcTm35UXv9ohvtFEKzTP1Hf1tBtTw + clientId: user-management + clientSecret: 448ae58e-a9f0-4fab-92fe-650bfd5f9e57 username: admin password: password \ No newline at end of file