From 4b7cd5405dea9003f31af1aa9cd584d8ccf2141f Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Wed, 23 Aug 2023 09:54:43 +0200 Subject: Consistently use the preferences and history names in the bff code base - rename openapi clients (client-portal-prefs -> client-preferences, client-portal-history -> client-history, client-portal-keycloak -> client-keycloak) - rename related spring configurations (portal-prefs -> preferences, portal-history -> history) - rename related environment variables (PORTAL_PREFS_URL -> PREFERENCES_URL, PORTAL_HISTORY_URL -> HISTORY_URL) Note that the changes to the configurations and variables affect external services using it and the bff chart Issue-ID: PORTALNG-49 Change-Id: I434abdf130a5a81534c2387143b296122408d452 Signed-off-by: Fiete Ostkamp --- app/build.gradle | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index 7ad65cd..4305de0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -19,15 +19,11 @@ configurations { } } -// repositories { -// mavenCentral() -// } - dependencies { implementation project(':openapi:server') - implementation project(':openapi:client-portal-history') - implementation project(':openapi:client-portal-prefs') - implementation project(':openapi:client-portal-keycloak') + implementation project(':openapi:client-history') + implementation project(':openapi:client-preferences') + implementation project(':openapi:client-keycloak') implementation project(':lib') implementation 'org.springframework.boot:spring-boot-starter-webflux' -- cgit 1.2.3-korg