Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say that my project has a main class. I'd love to have

public static final String version = "0.0.0.1";

However, I don't want to have to manually set the version, as my ant build file has the version present. Is there any way to insert this value based on the value present in the build file?

share|improve this question

2 Answers

up vote 6 down vote accepted

The easiest thing to do would be to write the version number out to a property file (or alternatively the Manifest file) using Ant, and in your Java code read the value of that field from the property file instead of hard-coding it.

It's of course possible to add the field to the class before (by changing the source file) or after compilation, but that's probably unneeded effort and might result in hard-to-version source code.

share|improve this answer
Yes, I have done this in my project where we can pass version information from Ant task (define as a property in a properties file) which can be used in my Java application. It is much easier this way since we can edit the property in the properties file whenever we need to change the version information. – ee. Nov 15 '11 at 4:55

There's the built-in ReplaceTokens filter chain.

See the filter chain docs for details.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.