-
Notifications
You must be signed in to change notification settings - Fork 41.2k
Add "stop" goal for the spring-boot-maven-plugin #667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This addition would be useful. Maybe a |
we may want to check what the |
I didn't intend that you should look into using the |
Second thought, I found a workaround using the |
I think it would. I suggest to document this approach properly so that others can find this out easily and resolve this one. We can revisit that later if necessary. |
This commit clarifies how @IntegrationTEST can be used as an alternative of starting the (web) application prior to running the tests suite. Fixes spring-projectsgh-667
Relates to spring-projectsgh-667
Hi, I think that @IntegrationTEST is not good enough as you may want to run other kind of tests than java based (I have an AngularJS ui and uses protractor for testing the app). |
Please create a new issue, this one is closed. |
It would be useful if a
stop
goal was added to thespring-boot-maven-plugin
. This would make it possible to start the Spring Boot application in Maven'spre-integration-test
phase and shut it down in thepost-integration-test
phase when implementing integration tests using the maven-failsafe-plugin.Example usage:
Currently, the since there is no
stop
goal, Spring Boot has to be terminated manually after the integration tests have been completed.Compare with the jetty and maven-failsafe configuration.
The text was updated successfully, but these errors were encountered: