Jar file contains only "src" folder, so create a file called "resource" and keep the properties file.
Code to read data from properties file.
Properties logProperties=new Properties();
logProperties.load(ClassLoader.getSystemResourceAsStream("FILE_NAME"));
String logTableName = logProperties.getProperty("PROPERTY_NAME");
All the best