I\'m trying to run exec-maven-plugin\'s exec:java goal on a simple two-module project where one module depends on the other. So far I can\'t find a
exec-maven-plugin
exec:java
See this answer for a single-command alternative without mvn install:
mvn install
https://stackoverflow.com/a/26448447/1235281
By using skip in the parent pom.xml, you can tell Maven to only run exec:java on a specific submodule.
skip
pom.xml
GitHub: https://github.com/Oduig/mavenfiddle