String productName = "jsynoptic";
String home = System.getProperty(productName + ".home", System.getProperty("user.home", ""));
File file = new File(home, "." + productName);
if (file.isDirectory()) {
classPaths.add(file);
File[] reps = file.listFiles();
boolean nativePath = false;
if (reps!=null) for(int j=0; j<reps.length; ++j) {
File[] maybejars = reps[j].listFiles();
if (maybejars!=null) {
boolean native2 = false;