summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-05-24 12:40:26 +0200
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-05-24 12:48:39 +0200
commit6441224b04ae08ac68712deb79d5446ef8535daa (patch)
tree6488701243fbec6e39d52fce0c892baa81f59b34
parentea3bc52a9fb1c45e5f427b15887551fd242f770e (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>
-rw-r--r--pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 5e314419..0f3fddc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>