Maven snapshot mode generalized to all version 5.x branches

As of version 5.0.29 the Simplicité instance’s Maven repository (used by exported modules - Git or ZIP - when used from an IDE) now exposes itself in “snapshot mode”, including for the release branch, with a version number limited to major and minor version (e.g. 5.0-SNAPSHOT).

This change was required to avoid “exact version” issues when Maven pulls for dependencies (e.g. if your module was exported with version 5.0.27 and your instance has been upgraded to 5.0.28 in the meantime, the pom.xml of your module was trying to get the dependencies from your instance for exact version 5.0.27 which is no longer available on the instance, the snapshot mode avoids such an issue).

NOTE: After you upgrade your instance to a 5.0.29+ version you need to recommit your modules so as the modules’ pom.xml files indicate the corresponding snapshot version. E.g. :

(...)
 <properties>
(...)
    <simplicite.url>https://my.instance.base.url</simplicite.url>
    <simplicite.version>5.0-SNAPSHOT</simplicite.version>
(...)
  </properties>
(...)