Is there a Maven plugin that lists all the JUnit tests in a project with multiple modules

Is there any maven plugin or non-maven module that will look through a project with several modules and return me a list of all existing JUnit test boxes (perfectly presented on the module) in a convenient form?

I want to be able to work on this list and distribute my tests on multiple hosts. I checked the documentation for a clear document and I am surprised that this does not seem to be able to do this.

+4
source share
1 answer

There target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lstin the Maven project.

GMavenPlus , .

Maven, .

+4

Source: https://habr.com/ru/post/1607944/


All Articles