def loadQuartzProperties()

in src/main/groovy/quartz/QuartzGrailsPlugin.groovy [144:153]


    def loadQuartzProperties() {
        Properties quartzProperties = new Properties()
        if (config.get('quartz')) {
            // Convert to a properties file adding a prefix to each property
            ConfigObject configObject = new ConfigObject()
            configObject.putAll(config.get('quartz') ?: [:])
            quartzProperties << configObject.toProperties('org.quartz')
        }
        quartzProperties
    }