From 2e73c86564aba467641c87a6e286398343397c65 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Mon, 17 Jun 2024 16:23:09 +0200 Subject: Bump aai-common version to 1.14.1 Issue-ID: AAI-3883 Change-Id: If89ec7af4b54462852c5578597112eb371b0c2f6 Signed-off-by: Fiete Ostkamp --- aai-aaf-auth/pom.xml | 4 ---- aai-core/src/test/java/org/onap/aai/rest/db/HttpEntryTest.java | 2 +- aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java | 2 +- version.properties | 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/aai-aaf-auth/pom.xml b/aai-aaf-auth/pom.xml index 71fd0e01..0a1cb492 100644 --- a/aai-aaf-auth/pom.xml +++ b/aai-aaf-auth/pom.xml @@ -38,10 +38,6 @@ org.springframework spring-context - - org.springframework.boot - spring-boot-starter-web - org.springframework.boot spring-boot-starter-web diff --git a/aai-core/src/test/java/org/onap/aai/rest/db/HttpEntryTest.java b/aai-core/src/test/java/org/onap/aai/rest/db/HttpEntryTest.java index 59a0f1f1..bdb02b99 100644 --- a/aai-core/src/test/java/org/onap/aai/rest/db/HttpEntryTest.java +++ b/aai-core/src/test/java/org/onap/aai/rest/db/HttpEntryTest.java @@ -122,7 +122,7 @@ public class HttpEntryTest extends AAISetup { */ @Parameterized.Parameters(name = "QueryStyle.{0}") public static Collection data() { - return Arrays.asList(new Object[][] { { QueryStyle.TRAVERSAL } }); + return Arrays.asList(new Object[][] { { QueryStyle.TRAVERSAL }, { QueryStyle.TRAVERSAL_URI } }); } private Loader loader; diff --git a/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java b/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java index cf278060..15b495ad 100644 --- a/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java +++ b/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java @@ -102,7 +102,7 @@ public class NodeIngestor { } catch (Exception e) { LOGGER.error("Error while Processing the translator" + e.getMessage()); - throw new ExceptionInInitializerError("NodeIngestor could not ingest schema"); + throw new ExceptionInInitializerError(e); } } if (versionContextMap.isEmpty() || schemaPerVersion.isEmpty() || typesPerVersion.isEmpty()) { diff --git a/version.properties b/version.properties index 5dfb2ddd..654a031f 100644 --- a/version.properties +++ b/version.properties @@ -5,7 +5,7 @@ major_version=1 minor_version=14 -patch_version=0 +patch_version=1 base_version=${major_version}.${minor_version}.${patch_version} -- cgit 1.2.3-korg