diff options
Diffstat (limited to 'installation/dgbuilder')
-rw-r--r-- | installation/dgbuilder/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/installation/dgbuilder/pom.xml b/installation/dgbuilder/pom.xml index 953e309e..f3940b17 100644 --- a/installation/dgbuilder/pom.xml +++ b/installation/dgbuilder/pom.xml @@ -84,7 +84,7 @@ <executions> <execution> <id>generate-images</id> - <phase>generate-sources</phase> + <phase>package</phase> <goals> <goal>build</goal> </goals> @@ -132,6 +132,20 @@ <version>1.5.0</version> <executions> <execution> + <id>Make-stage-dir</id> + <phase>generate-sources</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <executable>/bin/mkdir</executable> + <arguments> + <argument>-p</argument> + <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument> + </arguments> + </configuration> + </execution> + <execution> <id>Unzip dgbuilder</id> <phase>generate-sources</phase> <goals> |