turgos
turgos

Reputation: 1614

Running multiple spring boot microservices with Gradle

I am working on a Spring Boot application built using Gradle. We have multiple microservices as subprojects for this application.

I'm trying to run the application and all microservices using Spring Boot's bootRun task from the command line with single bootRun command.

Similarly, we would like to run some integration tests with the application and all microservices with single test command.

I appreciate for any help or pointing me some documentation.

Thank you in advance.

Upvotes: 7

Views: 1807

Answers (1)

turgos
turgos

Reputation: 1614

We decided to use gradle --parallel option.

Upvotes: 6

Related Questions