I have a Spring Boot Maven project that has Spring Boot DevTools enabled so that when I change code in the project it will automatically get reloaded. I also have a dependent project that I'm referencing in the pom.xml:
<dependency>
<groupId>com.mygroupid</groupId>
<artifactId>common</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
I would also like the same functionality in the dependent project so that when I make a code change in that project, then the parent project will pick up the change dynamically and reload. Is this possible? With Spring Boot devtools?