Referenced Library from an Eclipse plugin needs a .properties file
I have a problem with reading .properties files from my Eclipse plugin.
My plugin uses a Referenced Library .jar file. In the file a class is calling:
new FileInputStream("xxx.properties")
and it can't find the .properties file. I have this file. Where should I put it, or include it's path so that my library can find it when running the plugin?

