Fix versions 29/86729/1 1.5.1
authorTimoney, Dan (dt5972) <dtimoney@att.com>
Wed, 1 May 2019 18:26:23 +0000 (14:26 -0400)
committerTimoney, Dan (dt5972) <dtimoney@att.com>
Wed, 1 May 2019 18:26:23 +0000 (14:26 -0400)
Versions were set inconsistently in sdnc/apps - entire repo needs
to have the same version number.

Change-Id: I69cf0dd73cfaf2762f5fce7d0e9ff43fffd14709
Issue-ID: CCSDK-1222
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
client/pom.xml
pom.xml
pomba/network-discovery-api/pom.xml
pomba/network-discovery/pom.xml
pomba/pom.xml
pomba/service-decomposition/pom.xml
version.properties

index 996e046..592f5d9 100644 (file)
@@ -6,7 +6,7 @@
     <packaging>jar</packaging>
     <groupId>org.onap.sdnc.apps</groupId>
     <artifactId>client</artifactId>
-    <version>1.4.1-SNAPSHOT</version>
+    <version>1.5.1-SNAPSHOT</version>
 
     <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
     <url>http://wiki.onap.org</url>
diff --git a/pom.xml b/pom.xml
index 6dccdd3..c1f1d84 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
     <packaging>pom</packaging>
     <groupId>org.onap.sdnc</groupId>
     <artifactId>apps</artifactId>
-    <version>1.4.1-SNAPSHOT</version>
+    <version>1.5.1-SNAPSHOT</version>
 
     <parent>
         <groupId>org.onap.ccsdk.parent</groupId>
index d3db665..6a8ea24 100644 (file)
@@ -28,7 +28,7 @@ limitations under the License.
 
     <groupId>org.onap.sdnc.apps.pomba</groupId>
     <artifactId>network-discovery-api</artifactId>
-    <version>1.5.0-SNAPSHOT</version>
+    <version>1.5.1-SNAPSHOT</version>
     <name>Network Discovery API</name>
 
     <dependencies>
@@ -49,31 +49,31 @@ limitations under the License.
             <version>2.9.6</version>
             <scope>test</scope>
         </dependency>
-    </dependencies>
-    <profiles>
-        <profile>
-            <id>nexus-staging</id>
-            <activation>
-                <property>
-                    <name>!altDeploymentRepository</name>
-                </property>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.sonatype.plugins</groupId>
-                        <artifactId>nexus-staging-maven-plugin</artifactId>
-                        <version>1.6.7</version>
-                        <extensions>true</extensions>
-                        <configuration>
-                            <nexusUrl>https://nexus.onap.org</nexusUrl>
-                            <stagingProfileId>176c31dfe190a</stagingProfileId>
-                            <serverId>ecomp-staging</serverId>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+           </dependencies>
+           <profiles>
+               <profile>
+                   <id>nexus-staging</id>
+                   <activation>
+                       <property>
+                           <name>!altDeploymentRepository</name>
+                       </property>
+                   </activation>
+                   <build>
+                       <plugins>
+                           <plugin>
+                               <groupId>org.sonatype.plugins</groupId>
+                               <artifactId>nexus-staging-maven-plugin</artifactId>
+                               <version>1.6.7</version>
+                               <extensions>true</extensions>
+                               <configuration>
+                                   <nexusUrl>https://nexus.onap.org</nexusUrl>
+                                   <stagingProfileId>176c31dfe190a</stagingProfileId>
+                                   <serverId>ecomp-staging</serverId>
+                               </configuration>
+                           </plugin>
+                       </plugins>
+                   </build>
+               </profile>
+           </profiles>
 
 </project>
index 2b5a2fc..a5d831c 100644 (file)
@@ -22,7 +22,7 @@ limitations under the License.
     <parent>
         <groupId>org.onap.sdnc.apps.pomba</groupId>
         <artifactId>pomba</artifactId>
-        <version>1.5.0-SNAPSHOT</version>
+        <version>1.5.1-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
index 23e9d8c..8b82df1 100644 (file)
@@ -28,7 +28,7 @@ limitations under the License.
 
     <groupId>org.onap.sdnc.apps.pomba</groupId>
     <artifactId>pomba</artifactId>
-    <version>1.5.0-SNAPSHOT</version>
+    <version>1.5.1-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <modules>
index 131d639..1159451 100644 (file)
@@ -22,7 +22,7 @@ limitations under the License.
     <parent>
         <groupId>org.onap.sdnc.apps.pomba</groupId>
         <artifactId>pomba</artifactId>
-        <version>1.5.0-SNAPSHOT</version>
+        <version>1.5.1-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
index eff345c..423a329 100644 (file)
@@ -1,13 +1,14 @@
+###########################################################
 # Versioning variables
 # Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... )
 # because they are used in Jenkins, whose plug-in doesn't support
 
-major=1
-minor=4
-patch=1
+release_name=1
+sprint_number=5
+feature_revision=1
 
-base_version=${major}.${minor}.${patch}
+base_version=${release_name}.${sprint_number}.${feature_revision}
 
-# Release must be completed with git revision # in Jenkins
 release_version=${base_version}
 snapshot_version=${base_version}-SNAPSHOT
+