Failed to deploy so artifacts in nexus

More problems encountered since mso repos were renamed.

We now have found that this declaration in the top-level so pom
causes the deploy to fail with a 403 Forbidden error:

        <groupId>org.openecomp</groupId>
        <artifactId>so</artifactId>

We are changing this to:

        <groupId>org.openecomp.so</groupId>
        <artifactId>framework</artifactId>

Issue: SO-21
Change-Id: I4e21d689c73c5071bde725127bb81482ce3d91f9
Signed-off-by: Rob Daugherty <rd472p@att.com>
diff --git a/adapters/mso-workflow-message-adapter/pom.xml b/adapters/mso-workflow-message-adapter/pom.xml
index 5ee3fbf..1e5020e 100644
--- a/adapters/mso-workflow-message-adapter/pom.xml
+++ b/adapters/mso-workflow-message-adapter/pom.xml
@@ -2,11 +2,11 @@
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
-		<groupId>org.openecomp.so</groupId>
+		<groupId>org.openecomp.so.framework</groupId>
 		<artifactId>adapters</artifactId>
 		<version>1.1.0-SNAPSHOT</version>
 	</parent>
-	<groupId>org.openecomp.so.adapters</groupId>
+	<groupId>org.openecomp.so.framework.adapters</groupId>
 	<artifactId>mso-workflow-message-adapter</artifactId>
 	<packaging>war</packaging>
 	<name>mso-workflow-message-adapter</name>
@@ -29,12 +29,12 @@
 
 	<dependencies>
 		<dependency>
-			<groupId>org.openecomp.so.adapters</groupId>
+			<groupId>org.openecomp.so.framework.adapters</groupId>
 			<artifactId>mso-adapter-utils</artifactId>
 			<version>${project.version}</version>
 		</dependency>
 		<dependency>
-			<groupId>org.openecomp.so.adapters</groupId>
+			<groupId>org.openecomp.so.framework.adapters</groupId>
 			<artifactId>mso-adapters-rest-interface</artifactId>
 			<version>${project.version}</version>
 		</dependency>
@@ -62,7 +62,7 @@
 			<version>4.5.2</version>
 		</dependency>
 		<dependency>
-			<groupId>org.openecomp.so</groupId>
+			<groupId>org.openecomp.so.framework</groupId>
 			<artifactId>status-control</artifactId>
 			<version>${project.version}</version>
 		</dependency>