I want to make a launch configuration that passes program arguments to my Java program, but the values of those arguments are in a properties file.
For example, the launch configuration program arguments might say:
hostname=${becHostName}
And then in my properties file I have:
becHostName=hutoffsite
And the result when I execute this launch configuration is my program invoked with:
hostname=hutoffsite
Is there a way?