How to redeploy artifact with liberty-maven-plugin?
问题 I have IBM Liberty server running on my machine and want to redeploy my WAR using corresponding maven plugin. The documentation says that there are goals like deploy , undeploy , install-apps . Currently I am using <plugin> <groupId>com.ibm.websphere.wlp.maven.plugins</groupId> <artifactId>liberty-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>install-apps</id> <phase>install</phase> <goals> <goal>install-apps</goal> </goals> </execution> </executions>