<moduleDescription>A module to communicate with CarteWeb. Build : ${maven.build.timestamp}</moduleDescription>
After packaging and installing the module, i got this :
What I would like to do is setting the buildNumber in the “Version” row (b0) instead of in the “Description” row. It is surely possible but how to proceed ?
Ignition uses the fourth component of the version number as the build number. So version 1.2.3.456789 in module.xml will become Version 1.2.3 (b456789) in the gateway. It hits an internal limit around 10 digits (32bit?) – you can’t use a high resolution timestamp.
It works when I use a static version (for example 1.0.0.17) but when I try to package with a dynamic version (1.0.0.${maven.build.timestamp}), I got warnings and errors telling me that “‘version’ contains an expression but should be a constant”.