diff options
author | Areli Fuss <af732p@att.com> | 2017-11-07 17:02:22 +0200 |
---|---|---|
committer | Areli Fuss <af732p@att.com> | 2017-11-07 17:02:22 +0200 |
commit | 7c5e2d7db6ea62b91fe6dbdf1bd1a4c5bced4377 (patch) | |
tree | a97b7485b8a555a57c1c916e5464c0b880427486 | |
parent | 90e2d3cd6d015fc0f74a7d0bb063788264def860 (diff) |
ADD env command for proxy
ADD env command for proxy
Change-Id: I5088710d72bf8e4aade9633079af3386500f930f
Issue-Id: VVP-25
Signed-off-by: Areli Fuss <af732p@att.com>
-rw-r--r-- | pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -30,6 +30,24 @@ <build> <plugins> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.2.1</version> + <executions> + <execution> + <id>envtest</id> + <phase>package</phase> + <configuration> + <executable>env</executable> + <workingDirectory></workingDirectory> + </configuration> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> |