Stop a Liberty server. test-stop
honors the skipTests
, skipITs
, and maven-test-skip
properties. It also allows you to bypass automatically stopping the server during the post-integration-test
phase with pom configuration or a Liberty-specific command line argument.
The following are the parameters supported by this goal in addition to the parameters inherited from the stop goal, the common server parameters, and the common parameters.
Parameter | Description | Required |
---|---|---|
skipTestServer | Skip the start and stop of server when testing. The default value is false . |
No |
Example:
<project>
...
<groupId>myGroup</groupId>
<artifactId>myServer</artifactId>
<!-- Create Liberty server assembly -->
<packaging>liberty-assembly</packaging>
...
<build>
<plugins>
<!-- Enable liberty-maven-plugin -->
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>[3.0.1,)</version>
<extensions>true</extensions>
<configuration>
<skipTestServer>true</skipTestServer>
</configuration>
</plugin>
</plugins>
</build>
...
</project>