diff options
-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> |