
META-INF.maven.lifecycle.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockserver-maven-plugin Show documentation
Show all versions of mockserver-maven-plugin Show documentation
A maven plugin to start and stop the MockServer
<?xml version="1.0" encoding="UTF-8"?> <lifecycles> <lifecycle> <id>mockserver_cycle</id> <phases> <phase> <id>initialize</id> <executions> <execution> <goals> <goal>start</goal> </goals> </execution> </executions> </phase> <phase> <id>verify</id> <executions> <execution> <goals> <goal>stop</goal> </goals> </execution> </executions> </phase> </phases> <!--<default-phases>--> <!--<initialize>org.mockserver:mockserver-maven-plugin:start</initialize>--> <!--<verify>org.mockserver:mockserver-maven-plugin:stop</verify>--> <!--</default-phases>--> </lifecycle> </lifecycles>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy