diff options
author | Tao Shen <shentao@chinamobile.com> | 2018-10-29 06:00:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-29 06:00:34 +0000 |
commit | f0b7ff133383894a8abacced9061f2b72ddfeb13 (patch) | |
tree | 198a08be3159c5f851e30ef583d78a015f89d380 /usecaseui-portal | |
parent | d69bb7703fa793bf397e00ccb81f90ab62bb84cc (diff) | |
parent | ec200fd6c7e47b5412350d7224c5b94477bdcdd5 (diff) |
Merge "Fix oom health check error"
Diffstat (limited to 'usecaseui-portal')
-rw-r--r-- | usecaseui-portal/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/usecaseui-portal/pom.xml b/usecaseui-portal/pom.xml index 71a4d24e..fb08e7c0 100644 --- a/usecaseui-portal/pom.xml +++ b/usecaseui-portal/pom.xml @@ -100,6 +100,27 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>distribution</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target name="distribution"> + <zip destfile="./usecase-ui.war" update="true"> + <zipfileset dir="./usecase-ui" includes="**"/> + </zip> + <attachartifact file="./usecase-ui.war" classifier="win64" type="zip"/> + </target> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> </project> |