I am trying to create a runnable jar from an Eclipse project.
If I use the new "export runnable jar", as far as I can see there's no way to exclude specific files. (I have a properties file that I am using for testing but that I don't want included in the production jar because I want the user to provide his own properties file.)
On the other hand, if I use the "regular" export jar, it doesn't include any referenced libraries. (I need a JDBC driver jar.) I tried marking the library for export on the build path, but that made no apparent difference.
Is there any way to get the "export runnable jar" to exclude a file, or to get the regular export jar to include a library?