diff options
Diffstat (limited to 'pike')
-rw-r--r-- | pike/docker/Dockerfile | 2 | ||||
-rwxr-xr-x | pike/docker/build_image.sh | 4 | ||||
-rw-r--r-- | pike/pom.xml | 9 |
3 files changed, 7 insertions, 8 deletions
diff --git a/pike/docker/Dockerfile b/pike/docker/Dockerfile index e166de19..64df1e14 100644 --- a/pike/docker/Dockerfile +++ b/pike/docker/Dockerfile @@ -36,7 +36,7 @@ RUN groupadd -r onap && useradd -r -g onap onap RUN apt-get update && \ apt-get install -y memcached wget unzip gcc libssl-dev && \ cd /opt/ && \ - wget -O /opt/multicloud-openstack-pike.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-pike&e=zip&v=1.3.5-SNAPSHOT" && \ + wget -O /opt/multicloud-openstack-pike.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-pike&e=zip&v=1.4.0-SNAPSHOT" && \ unzip -q -o -B /opt/multicloud-openstack-pike.zip -d /opt/ && \ rm -f /opt/multicloud-openstack-pike.zip && \ pip install -r /opt/pike/requirements.txt && \ diff --git a/pike/docker/build_image.sh b/pike/docker/build_image.sh index 06057f0c..123884c7 100755 --- a/pike/docker/build_image.sh +++ b/pike/docker/build_image.sh @@ -20,8 +20,8 @@ echo "DOCKER_BUILD_DIR=${DOCKER_BUILD_DIR}" cd ${DOCKER_BUILD_DIR} BUILD_ARGS="--no-cache" -VERSION="1.3.5-SNAPSHOT" -STAGING="1.3.5-STAGING" +VERSION="1.4.0-SNAPSHOT" +STAGING="1.4.0-STAGING" OS_VERSION="pike" IMAGE_NAME="nexus3.onap.org:10003/onap/multicloud/openstack-${OS_VERSION}" diff --git a/pike/pom.xml b/pike/pom.xml index 9c4a7b42..672d2485 100644 --- a/pike/pom.xml +++ b/pike/pom.xml @@ -16,15 +16,14 @@ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> - <groupId>org.onap.oparent</groupId> - <artifactId>oparent</artifactId> - <version>2.0.0</version> - <relativePath>../oparent</relativePath> + <groupId>org.onap.multicloud.openstack</groupId> + <artifactId>multicloud-openstack-root</artifactId> + <version>1.4.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.onap.multicloud.openstack</groupId> <artifactId>multicloud-openstack-pike</artifactId> - <version>1.3.5-SNAPSHOT</version> + <version>1.4.0-SNAPSHOT</version> <packaging>pom</packaging> <name>multicloud-openstack-pike</name> <description>multicloud for openstack pike</description> |