aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>