mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 19:06:41 +03:00
27 lines
1.0 KiB
Groovy
27 lines
1.0 KiB
Groovy
// configuration for plugin testing - will not be included in the plugin zip
|
|
|
|
log4j = {
|
|
// Example of changing the log pattern for the default console
|
|
// appender:
|
|
//
|
|
//appenders {
|
|
// console name:'stdout', layout:pattern(conversionPattern: '%c{2} %m%n')
|
|
//}
|
|
|
|
error 'org.codehaus.groovy.grails.web.servlet', // controllers
|
|
'org.codehaus.groovy.grails.web.pages', // GSP
|
|
'org.codehaus.groovy.grails.web.sitemesh', // layouts
|
|
'org.codehaus.groovy.grails.web.mapping.filter', // URL mapping
|
|
'org.codehaus.groovy.grails.web.mapping', // URL mapping
|
|
'org.codehaus.groovy.grails.commons', // core / classloading
|
|
'org.codehaus.groovy.grails.plugins', // plugins
|
|
'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
|
|
'org.springframework',
|
|
'org.hibernate',
|
|
'net.sf.ehcache.hibernate'
|
|
}
|
|
|
|
grails.views.gsp.encoding = "UTF-8"
|
|
grails.converters.encoding = "UTF-8"
|
|
|
|
grails.plugins.twitterbootstrap.fixtaglib = true |