I am building a NetBeans RCP application using the NetBeans platform version 7.3 and the maven-nbm-plugin. For Windows, I'm building an installer using the nbm:build-installers
mojo. The installer produced installs my application, but the version number listed in the Windows Control Panel > Programs > Programs and Features
is 1.0.0.0. When I build a new version of the application, users are unable to install it because Windows believes the version (1.0.0.0) is already installed. I know that I can use NetBeans' auto-update functionality, but I also want users to be able to run a full install for updates.
How can I configure the maven-nbm-plugin to set the release version number of the Windows installer's installed product? Ideally, I'd like to use the Maven ${project.version}
of the application module as the release version.