aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-05-23 22:08:35 +0200
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-05-24 11:14:46 +0200
commitea3bc52a9fb1c45e5f427b15887551fd242f770e (patch)
treeb2b0b639067ea006c8d0efa7f25a3d97f089ab75 /pom.xml
parent300c813bcf7677b9d6c8508f3c19e53abf39b7be (diff)
Upgrade docker plugin
Upgrade docker plugin to 1.1.0 Issue-ID: CLAMP-150 Change-Id: I4d63cd75f87ab0244d028b10539529c60482c6dc Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 21 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 4beb6d67..5e314419 100644
--- a/pom.xml
+++ b/pom.xml
@@ -565,6 +565,26 @@
</resources>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <echo>******** Displaying value of property ********</echo>
+ <echo>Docker host set:${env.DOCKER_HOST}</echo>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<!-- Scan Clamp code and generate the swagger.json file with all the APIs -->
<plugin>
<groupId>com.sebastian-daschner</groupId>
@@ -765,7 +785,7 @@
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
- <version>1.0.0</version>
+ <version>1.1.0</version>
<configuration>
<imageName>onap/clamp</imageName>
<dockerDirectory>src/main/docker</dockerDirectory>