SEBA-1008-Minor version upgrade

Change-Id: Ic4a8eb5a7e639d0d13004f00e8ab5edccb7ce1c6
diff --git a/api/pom.xml b/api/pom.xml
index 156e55f..496ae65 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -23,7 +23,8 @@
         <version>1.0.1-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-
+    
+    <version>${maclearner.api.version}</version>
     <artifactId>maclearner-api</artifactId>
     <packaging>bundle</packaging>
 
diff --git a/app/app.xml b/app/app.xml
index 1cb39b2..718a2a2 100644
--- a/app/app.xml
+++ b/app/app.xml
@@ -21,5 +21,5 @@
      features="${project.artifactId}">
     <description>Mapping clients' MAC Address and Port Number information temporarily.</description>
     <artifact>mvn:${project.groupId}/${project.artifactId}/${project.version}</artifact>
-    <artifact>mvn:${project.groupId}/maclearner-api/${project.version}</artifact>
+    <artifact>mvn:${project.groupId}/maclearner-api/${maclearner.api.version}</artifact>
 </app>
diff --git a/app/features.xml b/app/features.xml
index ca3587a..dcdf59a 100644
--- a/app/features.xml
+++ b/app/features.xml
@@ -17,7 +17,7 @@
 <features xmlns="http://karaf.apache.org/xmlns/features/v1.2.0" name="${project.artifactId}-${project.version}">
     <feature name="${project.artifactId}" version="${project.version}"
              description="${project.description}">
-        <bundle>mvn:${project.groupId}/maclearner-api/${project.version}</bundle>
+        <bundle>mvn:${project.groupId}/maclearner-api/${maclearner.api.version}</bundle>
         <bundle>mvn:${project.groupId}/${project.artifactId}/${project.version}</bundle>
     </feature>
 </features>
\ No newline at end of file
diff --git a/app/pom.xml b/app/pom.xml
index 3024b1a..286e6f2 100644
--- a/app/pom.xml
+++ b/app/pom.xml
@@ -41,7 +41,7 @@
         <dependency>
             <groupId>org.opencord</groupId>
             <artifactId>maclearner-api</artifactId>
-            <version>${project.version}</version>
+            <version>${maclearner.api.version}</version>
         </dependency>
         <dependency>
             <groupId>org.onosproject</groupId>
diff --git a/pom.xml b/pom.xml
index adcfc90..e75730b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,12 +33,12 @@
 
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <onos.version>2.2.2</onos.version>
         <onos.app.name>org.opencord.maclearner</onos.app.name>
         <onos.app.category>Utility</onos.app.category>
         <onos.app.title>Mac Address by Connected Port Information Service</onos.app.title>
         <onos.app.origin>ON.Lab</onos.app.origin>
         <onos.app.url>http://onosproject.org</onos.app.url>
+        <maclearner.api.version>1.0.1-SNAPSHOT</maclearner.api.version>
     </properties>
 
     <modules>