i have a project in Java developed in Eclipse Mars with my colleagues. it is based on Git and we want to put it under versioning. Any PC can export the .jar file but we need a version of the exported file. ex: we are at the version 1.0 of the app (app_v1.0.jar) Person 1 does some modification to the source, commits and pushes it to the repository. Now he want to export the new .jar file with the new name app_v1.1.jar Person 2 pulls the new source from repository, modifies some part and exports it in app_v1.2.jar. What we need is an automatic way to have vx.y in the name of the app and the relativity version.
Thanks in advance.