per the example shown in pact-jvm-provider,
// This will be called before the provider task
task('startTheApp') << {
// start up your provider here
}
// This will be called after the provider task
task('killTheApp') << {
// kill your provider here
}An issue I am facing is with gradle task startApp using bootRun{} it starts the app and waits/hangs and doesn't come to pactVerify task execution.
Any help how to start spring boot app in gradle task before pactVerify and stop after is appreciated.
Thanks in advance