functions.SystemProperties.ext Maven / Gradle / Ivy
cached String getSystemProperty(String propertyName):
JAVA java.lang.System.getProperty(java.lang.String);
cached String getSystemProperty(String propertyName, String defaultValue):
JAVA java.lang.System.getProperty(java.lang.String, java.lang.String);
private cached boolean getBooleanSystemProperty(String propertyName, boolean defaultValue):
if getSystemProperty(propertyName, defaultValue.toString()) == "true"
then true
else false;
cached boolean generateJSONAutoDetectAnnotationOnClass():
getBooleanSystemProperty("switch.gen.jackson.jsonautodetect.on.class", false);
cached boolean groupBreakingChangesReportByPackage():
getBooleanSystemProperty("switch.gen.breaking.changes.report.groupByPackage", true);