diff options
Diffstat (limited to 'usecaseui-portal/pom.xml')
-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> |