I exported a runnable JAR file from my project. I included the resources in a separate lib folder(during export), which is alongside of the JAR file. I also copied the properties file to the root folder alongside of the JAR and the lib(folder). I am trying to run the JAR via command line. But how do I tell the properties file to refer to my drivers in my lib folder? Can I just use C:\users.... ? We usually have this all on a server, but I have to test this on my local machine. How do I also tell the java source code to refer to the properties file outside of the JAR and not the one that is inside the JAR?
Basically we want the lib and properties files/folders outside of the JAR so that we can update easily when it goes to the server, but I am trying to test all of this on my local machine.