Attempt to fix build 01/48901/1
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Thu, 24 May 2018 10:40:26 +0000 (12:40 +0200)
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Thu, 24 May 2018 10:48:39 +0000 (12:48 +0200)
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>
pom.xml

diff --git a/pom.xml b/pom.xml
index 5e31441..0f3fddc 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                                </resources>
 
                                <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>