diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-05-24 12:40:26 +0200 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-05-24 12:48:39 +0200 |
commit | 6441224b04ae08ac68712deb79d5446ef8535daa (patch) | |
tree | 6488701243fbec6e39d52fce0c892baa81f59b34 /pom.xml | |
parent | ea3bc52a9fb1c45e5f427b15887551fd242f770e (diff) |
Attempt to fix build
Get info on docker in order to fix the build issue of docker
Issue-ID: CLAMP-150
Change-Id: I6417031e4c27d85b0818ea36b2ec1fde91fe8337
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -566,6 +566,27 @@ <plugins> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.6.0</version> + <executions> + <execution> + <id>docker_info</id> + <phase>validate</phase> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <executable>docker</executable> + <arguments> + <argument>info</argument> + </arguments> + </configuration> + </plugin> + + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> |