Gizmo to use latest schema 25/32325/1
authorsblimkie <steven.blimkie@amdocs.com>
Tue, 20 Feb 2018 21:22:24 +0000 (16:22 -0500)
committersblimkie <steven.blimkie@amdocs.com>
Tue, 20 Feb 2018 21:23:53 +0000 (16:23 -0500)
Update Gizmo to use the latest version of the aai-schema and
aai relationships

Change-Id: I2a8b408b2e55f1bd13ee8800a0d78bdf2c59ecb8
Issue-ID: AAI-482
Signed-off-by: sblimkie <steven.blimkie@amdocs.com>
pom.xml
src/test/java/org/onap/schema/RelationshipSchemaLoaderTest.java

diff --git a/pom.xml b/pom.xml
index 4397be5..0f50c7b 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -99,7 +99,7 @@
         <dependency>
           <groupId>org.onap.aai.aai-common</groupId>
           <artifactId>aai-schema</artifactId>
-          <version>1.2.0</version>
+          <version>1.2.1-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.onap.aai.aai-common</groupId>
         <dependency>
             <groupId>org.onap.aai.aai-common</groupId>
             <artifactId>aai-core</artifactId>
-            <version>1.2.0</version>
+            <version>1.2.1-SNAPSHOT</version>
             <exclusions>
                 <exclusion>
                     <groupId>*</groupId>
index a2b9956..4dc25d8 100644 (file)
@@ -41,7 +41,7 @@ public class RelationshipSchemaLoaderTest {
         RelationshipSchemaLoader.loadModels("v11");
         String version = RelationshipSchemaLoader.getLatestSchemaVersion();
         RelationshipSchema g = RelationshipSchemaLoader.getSchemaForVersion(version);
-        assertNotNull(g.lookupRelationType("isMemberOf"));
+        assertNotNull(g.lookupRelationType("org.onap.relationships.inventory.BelongsTo"));
     }
 
     @Test
@@ -88,4 +88,4 @@ public class RelationshipSchemaLoaderTest {
         RelationshipSchemaLoader.setVersionContextMap(versionMap);
         assertNotNull(RelationshipSchemaLoader.getSchemaForVersion("v1").lookupRelationType("groupsResourcesIn"));
     }
-}
\ No newline at end of file
+}