I have 2 projects managed by maven. The first is the Model. The Second Front End and the Controll The model is a dependency of the FrontEnd. I do this with the following dependency on the pom.xml of the FrontEnd project.
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>alvoradaModel</artifactId>
<version>1.2.0</version>
</dependency>
I have control of both projects by Git. and for that I use two Branchs: the master and the development
How do I get the dawnModel to always be obtained from the master branch even if it is currently active?