Failed to deploy so artifacts in nexus (again)

There are Linux Foundation rules (enforced by nexus) that I still
don't really understand. I'm convinced this is absolutely true:

The groupId of every artifact in a project MUST begin with:
	org.openecomp.<project>
	   --or--
	org.onap.<project>

The top-level artifact is no exception.  So for example, this is
NOT allowed:

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

Here's what I'm trying now.  The top level pom will contain:

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

Child modules will contain:

        <parent>
                <groupId>org.openecomp.so</groupId>
                <artifactId>so-parent</artifactId>
                <version>1.1.0-SNAPSHOT</version>
        </parent>

        <groupId>org.openecomp.so</groupId>
        <artifactId>some-child-artifact</artifactId>

Note that the groupId for the direct child module will be the
same as the groupId for its parent.

Issue: SO-21
Change-Id: I0d3cd2eb7a1883e23e3c0878ee7fa3dd4a7d55b2
Signed-off-by: Rob Daugherty <rd472p@att.com>
diff --git a/asdc-controller/pom.xml b/asdc-controller/pom.xml
index a7dab44..68bfed2 100644
--- a/asdc-controller/pom.xml
+++ b/asdc-controller/pom.xml
@@ -3,11 +3,11 @@
 	<modelVersion>4.0.0</modelVersion>

 	<parent>

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

-		<artifactId>framework</artifactId>

+		<artifactId>so-parent</artifactId>

 		<version>1.1.0-SNAPSHOT</version>

 	</parent>

 

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

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

 	<artifactId>asdc-controller</artifactId>

 	<name>asdc-controller</name>

 	<description>ASDC CLient and Controller</description>

@@ -47,7 +47,7 @@
 			<scope>test</scope>

 		</dependency>

 		<dependency>

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

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

 			<artifactId>mso-catalog-db</artifactId>

 			<version>${project.version}</version>

 		</dependency>

@@ -91,7 +91,7 @@
 		</dependency>

 

 		<dependency>

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

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

 			<artifactId>common</artifactId>

 			<version>${project.version}</version>

 		</dependency>

@@ -109,7 +109,7 @@
 			<scope>provided</scope>

 		</dependency>

 		<dependency>

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

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

 			<artifactId>status-control</artifactId>

 			<version>${project.version}</version>

 		</dependency>