I'm using GORM standalone, like described here:
https://gist.github.com/graemerocher/c25ec929d9bcd1adcbea
what I need to know, how can I pass gorm specific parameters to this kind of configuration? For example in standart grails-app I can configure GORM with Config.groovy and write there parameters like:
grails.hibernate.cache.queries=true
grails.gorm.default.mapping = {
version false
autoTimestamp false }
Where can I pass these parameters in standalone gorm-application? Thanks.