aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Lund <lund@research.att.com>2017-02-21 01:07:34 +0000
committerCarsten Lund <lund@research.att.com>2017-02-21 01:08:00 +0000
commit3a6795040e9ee4cdeef041eaa08351056f123ddc (patch)
tree0700901a2b3d1e60f159fe50f5b550e63175ff93
parentf0ec3a94ab4a32c0545fc0dce09fe41ffcdb9ba2 (diff)
Added download to POM of manager zip
Change-Id: I0e7a7a441334f9518eaf87b0d0c2e93d449aaf81 Signed-off-by: Carsten Lund <lund@research.att.com>
-rw-r--r--.gitignore1
-rw-r--r--pom.xml29
2 files changed, 30 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index b83d222..d3eb35c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/target/
+/manager.zip
diff --git a/pom.xml b/pom.xml
index 371e387..828667c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>