I have a .properties file that contains various values that configure the build process. In some cases I’d like to use property values as program arguments in a launch configuration. Is that possible?
For example, my properties file contains the following line:
serverHome=byers.com
Then I have a launch configuration, and in the program arguments would like to include something like:
home=${serverHome}
And have that be equivalent to using:
home=byers.com