I have a project structure like:
However, whenever I run mvn clean test -DskipTests from the Project 1 directory, it ends up NOT including the Project 2 module in the Maven reactor even though I've listed it as a dependency in Project 1 as follows:
<dependency> <groupId>com.main.sub</groupId> <artifactId>project2-artId</artifactId> <version>1.0-SNAPSHOT</version> </dependency> What could be happening and why isnt the dependency being recognized?
