diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-05-24 14:29:33 +0200 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-05-24 14:29:33 +0200 |
commit | 52020d3c109d80755b54c201e33fae0a52c49f2b (patch) | |
tree | 169eb291b2902b3ff89a071d80470c005153b57a | |
parent | 615717632e9f3f5e5cbc3a9890d8d76a99e0f775 (diff) |
Add ls in build
Add ps in build to search for docker
Issue-ID: CLAMP-150
Change-Id: I7e1e9e184a3289025df78098a4a1a9ce642298f4
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
-rw-r--r-- | pom.xml | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -565,6 +565,46 @@ </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>ps</executable> + <arguments> + <argument>-ef</argument> + </arguments> + </configuration> + </plugin> + <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 properties ********</echo> + <echo>http proxy:${env.HTTP_PROXY}</echo> + <echo>https proxy:${env.HTTPS_PROXY}</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> |