private static void setSystemPropertyIfNotDefined(String systemPropertyName, String value) {
   if (!System.getProperties().contains(systemPropertyName))
     System.setProperty(systemPropertyName, value);
 }