aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-11-02 11:00:33 -0500
committerDan Timoney <dtimoney@att.com>2020-11-02 11:11:57 -0500
commit6e095a089f0ef20094b19f74f2b7b44ec92ad3d9 (patch)
tree92d2bf977c7a7bab625002e758da775f5d01d30a
parentb3e0ce728fc17b3b623157613a44d54d82c6c2e3 (diff)
Update tags to comply with ONAP naming standards
Updated tag version to comply with ONAP naming standards Issue-ID: CCSDK-2963 Signed-off-by: Dan Timoney <dtimoney@att.com> Change-Id: I654396e52baf4fc940bb43bb2e6fff357e3f2143
-rw-r--r--.gitignore3
-rw-r--r--a1-policy-management/TagVersion.groovy41
-rw-r--r--a1-policy-management/pom.xml21
-rw-r--r--pom.xml2
4 files changed, 64 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index ec003d1c..6cb897f0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,9 @@ org.eclipse.core.resources.prefs
.checkstyle
maven-eclipse.xml
workspace
+.pydevproject
+.vscode
+.factorypath
## Compilation Files ##
*.class
diff --git a/a1-policy-management/TagVersion.groovy b/a1-policy-management/TagVersion.groovy
new file mode 100644
index 00000000..68a8b780
--- /dev/null
+++ b/a1-policy-management/TagVersion.groovy
@@ -0,0 +1,41 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP CCSDK
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END============================================
+ * ===================================================================
+ *
+ */
+
+package org.onap.ccsdk.distribution
+
+
+def versionArray;
+if ( project.properties['ccsdk.project.version'] != null ) {
+ versionArray = project.properties['ccsdk.project.version'].split('\\.');
+}
+
+if ( project.properties['ccsdk.project.version'].endsWith("-SNAPSHOT") ) {
+ patchArray = versionArray[2].split('-');
+ project.properties['project.docker.latestminortag.version']=versionArray[0] + '.' + versionArray[1] + "-SNAPSHOT-latest";
+ project.properties['project.docker.latestfulltag.version']=versionArray[0] + '.' + versionArray[1] + '.' + patchArray[0] + "-SNAPSHOT-latest";
+ project.properties['project.docker.latesttagtimestamp.version']=versionArray[0] + '.' + versionArray[1] + '.' + patchArray[0] + "-SNAPSHOT-"+project.properties['ccsdk.build.timestamp'];
+} else {
+ project.properties['project.docker.latestminortag.version']=versionArray[0] + '.' + versionArray[1] + "-STAGING-latest";
+ project.properties['project.docker.latestfulltag.version']=versionArray[0] + '.' + versionArray[1] + '.' + versionArray[2] + "-STAGING-latest";
+ project.properties['project.docker.latesttagtimestamp.version']=versionArray[0] + '.' + versionArray[1] + '.' + versionArray[2] + "-STAGING-"+project.properties['ccsdk.build.timestamp'];
+}
diff --git a/a1-policy-management/pom.xml b/a1-policy-management/pom.xml
index 4e89f941..644e3aea 100644
--- a/a1-policy-management/pom.xml
+++ b/a1-policy-management/pom.xml
@@ -54,6 +54,7 @@
<surefire-maven-plugin.version>2.22.2</surefire-maven-plugin.version><!-- Version must be this for tests to be run. Do not remove! -->
<jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
<exec.skip>true</exec.skip>
+ <ccsdk.project.version>${project.version}</ccsdk.project.version>
</properties>
<dependencies>
@@ -202,6 +203,21 @@
<build>
<plugins>
<plugin>
+ <groupId>org.codehaus.groovy.maven</groupId>
+ <artifactId>gmaven-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>execute</goal>
+ </goals>
+ <configuration>
+ <source>${basedir}/TagVersion.groovy</source>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
@@ -330,8 +346,9 @@
<JAR>${project.build.finalName}.jar</JAR>
</args>
<tags>
- <tag>${project.version}</tag>
- <tag>latest</tag>
+ <tag>${project.docker.latestminortag.version}</tag>
+ <tag>${project.docker.latestfulltag.version}</tag>
+ <tag>${project.docker.latesttagtimestamp.version}</tag>
</tags>
</build>
</image>
diff --git a/pom.xml b/pom.xml
index 918f241d..aa65e687 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,8 +36,8 @@
<packaging>pom</packaging>
<modules>
- <module>a1-policy-management</module>
<module>a1-adapter</module>
+ <module>a1-policy-management</module>
</modules>
<properties>