What are current best-practices for systematic build numbering and version number management in Java projects? Specifically:
How to manage build numbers sy
This is how i resolved this:
Here is the java file storing the version info:
public class Settings {
public static final String VERSION = "$VERSION$";
public static final String DATE = "$DATE$";
}
And here is the anttask "versioninfo":