Bump aai-common version to 1.14.1 45/138245/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Mon, 17 Jun 2024 14:23:09 +0000 (16:23 +0200)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Mon, 17 Jun 2024 14:23:09 +0000 (16:23 +0200)
Issue-ID: AAI-3883
Change-Id: If89ec7af4b54462852c5578597112eb371b0c2f6
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
aai-aaf-auth/pom.xml
aai-core/src/test/java/org/onap/aai/rest/db/HttpEntryTest.java
aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java
version.properties

index 71fd0e0..0a1cb49 100644 (file)
             <groupId>org.springframework</groupId>
             <artifactId>spring-context</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-web</artifactId>
-        </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-web</artifactId>
index 59a0f1f..bdb02b9 100644 (file)
@@ -122,7 +122,7 @@ public class HttpEntryTest extends AAISetup {
      */
     @Parameterized.Parameters(name = "QueryStyle.{0}")
     public static Collection<Object[]> data() {
-        return Arrays.asList(new Object[][] { { QueryStyle.TRAVERSAL } });
+        return Arrays.asList(new Object[][] { { QueryStyle.TRAVERSAL }, { QueryStyle.TRAVERSAL_URI } });
     }
 
     private Loader loader;
index cf27806..15b495a 100644 (file)
@@ -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()) {
index 5dfb2dd..654a031 100644 (file)
@@ -5,7 +5,7 @@
 
 major_version=1
 minor_version=14
-patch_version=0
+patch_version=1
 
 base_version=${major_version}.${minor_version}.${patch_version}