diff options
author | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-03-07 10:01:56 -0500 |
---|---|---|
committer | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-03-07 10:02:10 -0500 |
commit | 12dc3eeaa45dd92c7e9d4de6492806341a47381c (patch) | |
tree | 172a97371550ba38dbe7e5e6c79bce513299d251 /installation/dgbuilder | |
parent | f7ff28dad35ae9f99e88790232246ec8778d700e (diff) |
[Docker] Dgbuilder docker image does not build
Problem seems to be related to version of exec-maven-plugin - version 1.5.0 seems to work correctly
Change-Id: Iafde699687fb06ea1dfd9fa06b04668022007345
Signed-off-by: Timoney, Daniel (dt5972) <dtimoney@att.com>
Former-commit-id: 660e02d8d1fc4a06e756c068f36f9bf74aba3199
Diffstat (limited to 'installation/dgbuilder')
-rw-r--r-- | installation/dgbuilder/pom.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/installation/dgbuilder/pom.xml b/installation/dgbuilder/pom.xml index 6df37691..c45046a5 100644 --- a/installation/dgbuilder/pom.xml +++ b/installation/dgbuilder/pom.xml @@ -96,6 +96,7 @@ <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> + <version>1.5.0</version> <executions> <execution> <id>make-path</id> @@ -104,7 +105,7 @@ <goal>exec</goal> </goals> <configuration> - <executable>/bin/mkdir</executable> + <executable>/bin/echo</executable> <arguments> <argument>-p</argument> <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument> |