From 785f5f51449b67501482e7ce630d4780908a024f Mon Sep 17 00:00:00 2001 From: kaixiliu Date: Tue, 11 Jun 2024 10:45:21 +0800 Subject: [PATCH] Component upgrade Issue-ID: USECASEUI-836 Change-Id: I25a4f10d4e80d0fadb212d5d7abdd3ba4720d3e9 Signed-off-by: kaixiliu --- server/pom.xml | 14 +++++++------- .../lcm/impl/SotnServiceTemplateServiceImplTest.java | 7 +++++++ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/server/pom.xml b/server/pom.xml index 02ddb434..cb7b8044 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -45,7 +45,7 @@ org.springframework spring-framework-bom - 6.0.12 + 6.1.3 pom import @@ -84,7 +84,7 @@ org.postgresql postgresql - 42.6.0 + 42.7.1 org.springframework.boot @@ -105,12 +105,12 @@ com.squareup.okio okio - 3.5.0 + 3.8.0 com.google.guava guava - 32.1.2-jre + 33.0.0-jre com.squareup.okhttp3 @@ -139,21 +139,21 @@ com.fasterxml.jackson.core jackson-databind - 2.15.2 + 2.16.1 com.fasterxml.jackson.core jackson-core - 2.15.2 + 2.16.1 com.fasterxml.jackson.core jackson-annotations - 2.15.2 + 2.16.1 diff --git a/server/src/test/java/org/onap/usecaseui/server/service/lcm/impl/SotnServiceTemplateServiceImplTest.java b/server/src/test/java/org/onap/usecaseui/server/service/lcm/impl/SotnServiceTemplateServiceImplTest.java index b50cd821..2fa82876 100644 --- a/server/src/test/java/org/onap/usecaseui/server/service/lcm/impl/SotnServiceTemplateServiceImplTest.java +++ b/server/src/test/java/org/onap/usecaseui/server/service/lcm/impl/SotnServiceTemplateServiceImplTest.java @@ -26,6 +26,7 @@ import okio.ByteString; import okio.Options; import okio.Sink; import okio.Timeout; +import okio.TypedOptions; import org.jetbrains.annotations.NotNull; import org.junit.Before; import org.junit.Test; @@ -501,6 +502,12 @@ public class SotnServiceTemplateServiceImplTest { public BufferedSource source() { BufferedSource bufferedSource = new BufferedSource() { + @org.jetbrains.annotations.Nullable + @Override + public T select(@NotNull TypedOptions typedOptions) throws IOException { + return null; + } + @NotNull @Override public BufferedSource peek() { -- 2.16.6