diff options
author | Carsten Lund <lund@research.att.com> | 2017-02-21 01:07:34 +0000 |
---|---|---|
committer | Carsten Lund <lund@research.att.com> | 2017-02-21 01:08:00 +0000 |
commit | 3a6795040e9ee4cdeef041eaa08351056f123ddc (patch) | |
tree | 0700901a2b3d1e60f159fe50f5b550e63175ff93 | |
parent | f0ec3a94ab4a32c0545fc0dce09fe41ffcdb9ba2 (diff) |
Added download to POM of manager zip
Change-Id: I0e7a7a441334f9518eaf87b0d0c2e93d449aaf81
Signed-off-by: Carsten Lund <lund@research.att.com>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | pom.xml | 29 |
2 files changed, 30 insertions, 0 deletions
@@ -1 +1,2 @@ /target/ +/manager.zip @@ -608,6 +608,35 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>3.0.0</version> + <executions> + <execution> + <id>copy</id> + <phase>compile</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.openecomp.dcae.controller</groupId> + <artifactId>dcae-controller-service-standardeventcollector-manager</artifactId> + <version>0.1.0-SNAPSHOT</version> + <type>zip</type> + <classifier>runtime</classifier> + <overWrite>true</overWrite> + <outputDirectory>.</outputDirectory> + <destFileName>manager.zip</destFileName> + </artifactItem> + </artifactItems> + <!-- other configurations here --> + </configuration> + </execution> + </executions> + </plugin> </plugins> |