Im trying to create a Java properties file in the format
api.base=http://example.com/api
api.get_posts=<dynamic_value_for_api_base>/get_posts
Im not quite sure if its possible, but I've definitely seen it done before (although it might have been done using Ant). Is there something I can do in this instance, in the properties file, without having to do it programmatically in Java?
Thanks Stephen