I am working on a project in which I have an Android application project that has pom dependencies on other projects, something like this:
<dependencies>
<dependency>
<groupId>some.project/groupId>
<artifactId>some.artifact<artifactId>
<version>1.0.0</version>
<type>apklib</type>
</dependency>
</dependencies>
during development, I always want Intellij to use the local source code from some.project library that I have in the project.
the problem is that it will pull version 1.0.0 from the server and will use this.
I tried using LATEST as the version, this works fine while my version of some.project library is updated to the latest version on the server.
since we have automatic assemblies that will increase the version for some.project when changes are made. I will have a scenario in which my source says 1.0.0, but the server has 1.0.1 and again intellij will pull the apklib server
? dev, - , prod- ( ), .
!