How to run a one-time reactor on multiple maven projects without a root project?
This was possible in maven2 by invoking the mvn command with the -r option, which would search recursively from the working directory for projects and organize them in the reactor to build the correct order, even if the projects do not share the common parent pom.xml. If desired, specific projects could be specifically included or excluded using the maven.reactor.includes and maven.reactor.excludes options.
I understand that the former reactor mode has been removed from maven3, but I cannot figure out how to achieve this functionality using the make-like reactor mode.
source share