Typically no test project should depend on other test projects, so you shouldn't need to specify the order. But you could have some setup projects that need to be run before the test projects. You can specify those with the setupIncludes param [1].
Having said that, you could try specifying the order with the pomIncludes param [2]. I don't know if it works and it sounds cumbersome to me to always keep that parameter updated whenever you add a test project. [1] https://maven.apache.org/plugins/maven-invoker-plugin/integration-test-mojo.html#setupIncludes [2] https://maven.apache.org/plugins/maven-invoker-plugin/integration-test-mojo.html#pomIncludes /Anders On Tue, Oct 16, 2018 at 11:16 PM Zoltan Farkas <[email protected]> wrote: > Is there a way to control the order the tests configured at: > <projectsDirectory>src/it/projects</projectsDirectory> ? > > thanks! > > —Z > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
