I have a maven multi module project and I use gitlab-ci to deploy release version when I merge into my master branch.
Each sub mudole has its own version and when I merge into my master branch, I want deploy only NEW RELEASES versions.
It means that sub modules with snapshot version must be ignored and sub modules with release version already present in remote repo must be ignored too.
An example with these three sub modules:
Sub module A:
<project>
<artifactId>sub-module-A</artifactId>
<version>1.0.1</version>
</project>
Sub module B:
<project>
<artifactId>sub-module-B</artifactId>
<version>2.5.0-SNAPSHOT</version>
</project>
Sub module C:
<project>
<artifactId>sub-module-B</artifactId>
<version>3.0.0</version> // Already presents in remote repo
</project>
In my case, I want that when the pipeline job executes maven deploy command, sub module A is deployed, sub module B is ignored (snapshot version) and sub module C is also ignored (already presents in remote repo).
For snapshot version I already know how to do it:
mvn clean deploy -Dmaven.deploy.skip=snapshots // With some additions in pom.xml
But I don't know how to skip sub modules which has already been deployed in the remote repo and my pipeline job always failed and not the totallity of my sub modules are correctly deployed.
Some one have a solution for me?