Update bff dependencies 61/137461/2
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Mon, 4 Mar 2024 08:03:11 +0000 (09:03 +0100)
committerFiete Ostkamp <fiete.ostkamp@telekom.de>
Mon, 4 Mar 2024 08:06:54 +0000 (08:06 +0000)
- update spring boot from 3.0.4 to 3.2.2
- update openapi generator from 7.0.0-beta to 7.3.0
- update micrometer from 1.0.0 to 1.1.4
- add localhost as valid redirect url for the keycloak realm

Issue-ID: PORTALNG-74
Change-Id: I07da27d1b24bb15530d3de49c725ec9e28c40a8c
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
build.gradle
development/config/onap-realm.json
settings.gradle

index 8b484e2..bb57241 100644 (file)
@@ -12,7 +12,7 @@ ext {
     mapStructExtensionsVersion = '1.0.2'
     logbackVersion = '7.4'
     lombokVersion = '1.18.28'
-    micrometerVersion = '1.0.0'
+    micrometerVersion = '1.1.4'
 
     // app
     wiremockVersion = '4.0.4'
index bc49a76..fab464f 100644 (file)
@@ -9,8 +9,12 @@
       "enabled": true,
       "alwaysDisplayInConsole": false,
       "clientAuthenticatorType": "client-secret",
-      "redirectUris": [],
-      "webOrigins": [],
+      "redirectUris": [
+        "http://localhost/*"
+      ],
+      "webOrigins": [
+        "*"
+      ],
       "notBefore": 0,
       "bearerOnly": false,
       "consentRequired": false,
       "notBefore" : 0,
       "groups" : [ ]
     }
-  ]
-}
\ No newline at end of file
+  ],
+  "attributes": {
+    "frontendUrl": "http://localhost:8080/auth/"
+  }
+}
index 200c1cc..8327ebf 100644 (file)
@@ -2,9 +2,9 @@
 pluginManagement {
     // https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_version_management
     plugins {
-        id 'io.spring.dependency-management' version '1.1.2'
-        id 'org.springframework.boot' version '3.1.2'
-        id 'org.openapi.generator' version '7.0.0-beta'
+        id 'io.spring.dependency-management' version '1.1.4'
+        id 'org.springframework.boot' version '3.2.3'
+        id 'org.openapi.generator' version '7.3.0'
         id 'com.github.johnrengelman.shadow' version '7.1.2'
         id 'com.gorylenko.gradle-git-properties' version '2.4.1'
         id 'com.diffplug.spotless' version '6.20.0'