Rename packages from openecomp to onap.

This task is all about package name space change also make changes to pom for common module

Change-Id: Ie9bda0f958a9a05826c0374830cc9cb7d6d196b6
Issue-ID: SDC-1272
Signed-off-by: amitjai <amitjai@amdocs.com>
diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml
index 621330a..0ca00c7 100644
--- a/catalog-be/pom.xml
+++ b/catalog-be/pom.xml
@@ -487,8 +487,8 @@
 
         <!--Artifact Generator-->
         <dependency>
-            <groupId>org.openecomp.sdc.common</groupId>
-            <artifactId>openecomp-sdc-artifact-generator-api</artifactId>
+            <groupId>org.onap.sdc.common</groupId>
+            <artifactId>onap-sdc-artifact-generator-api</artifactId>
             <version>${artifact-generator-api.version}</version>
             <scope>compile</scope>
             <exclusions>
@@ -500,8 +500,8 @@
         </dependency>
 
         <dependency>
-            <groupId>org.openecomp.sdc.common</groupId>
-            <artifactId>openecomp-sdc-artifact-generator-core</artifactId>
+            <groupId>org.onap.sdc.common</groupId>
+            <artifactId>onap-sdc-artifact-generator-core</artifactId>
             <version>${artifact-generator-core.version}</version>
             <scope>compile</scope>
             <exclusions>
@@ -513,8 +513,8 @@
         </dependency>
 
         <dependency>
-            <groupId>org.openecomp.sdc.common</groupId>
-            <artifactId>openecomp-common-lib</artifactId>
+            <groupId>org.onap.sdc.common</groupId>
+            <artifactId>onap-common-lib</artifactId>
             <version>${dox-common-lib.version}</version>
             <type>pom</type>
             <exclusions>
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/ArtifactTypes.java b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/ArtifactTypes.java
index f13331e..be56ff3 100644
--- a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/ArtifactTypes.java
+++ b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/ArtifactTypes.java
@@ -20,7 +20,7 @@
 
 package org.openecomp.sdc.be.tosca;
 
-import org.openecomp.sdc.generator.data.ArtifactType;
+import org.onap.sdc.generator.data.ArtifactType;
 
 import java.util.List;
 
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java
index ed3a246..75810bd 100644
--- a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java
+++ b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java
@@ -83,11 +83,11 @@
 import org.openecomp.sdc.common.util.GeneralUtility;
 import org.openecomp.sdc.common.util.ValidationUtils;
 import org.openecomp.sdc.exception.ResponseFormat;
-import org.openecomp.sdc.generator.data.AdditionalParams;
-import org.openecomp.sdc.generator.data.Artifact;
-import org.openecomp.sdc.generator.data.ArtifactType;
-import org.openecomp.sdc.generator.data.GenerationData;
-import org.openecomp.sdc.generator.impl.ArtifactGenerationServiceImpl;
+import org.onap.sdc.generator.data.AdditionalParams;
+import org.onap.sdc.generator.data.Artifact;
+import org.onap.sdc.generator.data.ArtifactType;
+import org.onap.sdc.generator.data.GenerationData;
+import org.onap.sdc.generator.impl.ArtifactGenerationServiceImpl;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ArtifactTypesTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ArtifactTypesTest.java
index 92fc2fd..38bf484 100644
--- a/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ArtifactTypesTest.java
+++ b/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ArtifactTypesTest.java
@@ -3,7 +3,7 @@
 import java.util.List;
 
 import org.junit.Test;
-import org.openecomp.sdc.generator.data.ArtifactType;
+import org.onap.sdc.generator.data.ArtifactType;
 
 
 public class ArtifactTypesTest {