summaryrefslogtreecommitdiffstats
path: root/installation/ueb-listener/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'installation/ueb-listener/pom.xml')
-rw-r--r--installation/ueb-listener/pom.xml48
1 files changed, 28 insertions, 20 deletions
diff --git a/installation/ueb-listener/pom.xml b/installation/ueb-listener/pom.xml
index 4260154d..2c2c300e 100644
--- a/installation/ueb-listener/pom.xml
+++ b/installation/ueb-listener/pom.xml
@@ -3,23 +3,22 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
- <groupId>org.onap.sdnc.oam</groupId>
- <artifactId>installation</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <groupId>org.onap.ccsdk.parent</groupId>
+ <artifactId>odlparent-lite</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<artifactId>installation-ueb-listener</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.3.1-SNAPSHOT</version>
- <name>Installation - ueb-listener</name>
+ <name>sdnc-oam :: installation :: ${project.artifactId}</name>
<description>Creates ueb-listener Docker container</description>
<properties>
<image.name>onap/sdnc-ueb-listener-image</image.name>
<sdnc.project.version>${project.version}</sdnc.project.version>
- <ccsdk.sli.northbound.version>0.2.0-SNAPSHOT</ccsdk.sli.northbound.version>
- <docker.buildArg.https_proxy>${https_proxy}</docker.buildArg.https_proxy>
+ <docker.buildArg.https_proxy>${https_proxy}</docker.buildArg.https_proxy>
</properties>
@@ -38,20 +37,29 @@
</goals>
<configuration>
<source>
- println project.properties['sdnc.project.version'];
+ println
+ project.properties['sdnc.project.version'];
def versionArray;
- if ( project.properties['sdnc.project.version'] != null ) {
- versionArray = project.properties['sdnc.project.version'].split('\\.');
+ if (
+ project.properties['sdnc.project.version']
+ != null ) {
+ versionArray = project.properties['sdnc.project.version'].split('\\.');
}
- if (project.properties['sdnc.project.version'].endsWith("-SNAPSHOT"))
+ if
+ (project.properties['sdnc.project.version'].endsWith("-SNAPSHOT"))
{
- project.properties['project.docker.latesttag.version']=versionArray[0] + '.' + versionArray[1] + "-STAGING-latest";
+ project.properties['project.docker.latesttag.version']=versionArray[0]
+ + '.' + versionArray[1] +
+ "-STAGING-latest";
} else {
- project.properties['project.docker.latesttag.version']=versionArray[0] + '.' + versionArray[1] + "-STAGING-latest";
+ project.properties['project.docker.latesttag.version']=versionArray[0]
+ + '.' + versionArray[1] +
+ "-STAGING-latest";
}
- println 'New Tag for docker:' +
+ println 'New Tag for
+ docker:' +
project.properties['project.docker.latesttag.version'];
</source>
</configuration>
@@ -139,12 +147,12 @@
<phase>initialize</phase>
<configuration>
<artifactItems>
- <artifactItem>
- <groupId>org.onap.ccsdk.sli.northbound</groupId>
- <artifactId>ueb-listener</artifactId>
- <type>zip</type>
- <version>${ccsdk.sli.northbound.version}</version>
- </artifactItem>
+ <artifactItem>
+ <groupId>org.onap.ccsdk.sli.northbound</groupId>
+ <artifactId>ueb-listener</artifactId>
+ <type>zip</type>
+ <version>${ccsdk.sli.northbound.version}</version>
+ </artifactItem>
</artifactItems>
<outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/ueb-listener</outputDirectory>
<excludes>bin/**,**/*-javadoc.jar,**/*-sources.jar</excludes>