diff options
author | Dan Timoney <dtimoney@att.com> | 2017-09-01 17:40:45 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-09-01 17:40:45 -0400 |
commit | 98ddb133dec262b727b93eab40f384b88fed864a (patch) | |
tree | 23cb613d1668a917efaacd9e706e92aff0b162f7 /installation/dgbuilder | |
parent | c085b94fff42885e0f97ee0521de6f401f39e030 (diff) |
Build sdnc/oam from ccsdk
Update sdnc/oam to build from ccsdk. To get a clean build, it was necessary
to also change openecomp references to onap.
Change-Id: I90d939e77504cd58148889aff2a50f060e27f963
Issue-ID: SDNC-50
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: e391e1e3ca8ea5385bb1f77ed7c4c83935451575
Diffstat (limited to 'installation/dgbuilder')
-rw-r--r-- | installation/dgbuilder/pom.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/installation/dgbuilder/pom.xml b/installation/dgbuilder/pom.xml index e88658c6..644d8f63 100644 --- a/installation/dgbuilder/pom.xml +++ b/installation/dgbuilder/pom.xml @@ -3,22 +3,22 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> - <groupId>org.openecomp.sdnc.oam</groupId> + <groupId>org.onap.sdnc.oam</groupId> <artifactId>installation</artifactId> - <version>1.1.2-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>pom</packaging> - <groupId>org.openecomp.sdnc.oam</groupId> + <groupId>org.onap.sdnc.oam</groupId> <artifactId>installation-dgbuilder</artifactId> - <version>1.1.2-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> <name>Installation - dgbuilder</name> <description>Creates docker container for dgbuilder</description> <properties> - <image.name>openecomp/dgbuilder-sdnc-image</image.name> + <image.name>onap/dgbuilder-sdnc-image</image.name> <sdnc.project.version>${project.version}</sdnc.project.version> </properties> @@ -141,7 +141,7 @@ <executable>/bin/mkdir</executable> <arguments> <argument>-p</argument> - <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument> + <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument> </arguments> </configuration> </execution> @@ -155,7 +155,7 @@ <executable>/usr/bin/unzip</executable> <arguments> <argument>-d</argument> - <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument> + <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument> <argument>../../dgbuilder/target/*.zip</argument> </arguments> </configuration> @@ -171,7 +171,7 @@ <arguments> <argument>-r</argument> <argument>../../dgbuilder</argument> - <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument> + <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument> </arguments> </configuration> </execution> @@ -185,7 +185,7 @@ <configuration> <executable>/bin/bash</executable> <arguments> - <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc/dgbuilder/createReleaseDir.sh</argument> + <argument>${basedir}/target/docker-stage/opt/onap/sdnc/dgbuilder/createReleaseDir.sh</argument> <argument>1702</argument> <argument>dguser</argument> <argument>change_email_id@dgbuilder.com</argument> @@ -202,7 +202,7 @@ <configuration> <executable>/usr/bin/find</executable> <arguments> - <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument> + <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument> <argument>-name</argument> <argument>*.sh</argument> <argument>-exec</argument> |