| // locations to search for config files that get merged into the main config; |
| // config files can be ConfigSlurper scripts, Java properties files, or classes |
| // in the classpath in ConfigSlurper format |
| |
| // grails.config.locations = [ "classpath:${appName}-config.properties", |
| // "classpath:${appName}-config.groovy", |
| // "file:${userHome}/.grails/${appName}-config.properties", |
| // "file:${userHome}/.grails/${appName}-config.groovy"] |
| |
| // if (System.properties["${appName}.config.location"]) { |
| // grails.config.locations << "file:" + System.properties["${appName}.config.location"] |
| // } |
| |
| grails.project.groupId = appName // change this to alter the default package name and Maven publishing destination |
| grails.mime.file.extensions = true // enables the parsing of file extensions from URLs into the request format |
| grails.mime.use.accept.header = false |
| grails.mime.types = [ |
| all: '*/*', |
| atom: 'application/atom+xml', |
| css: 'text/css', |
| csv: 'text/csv', |
| form: 'application/x-www-form-urlencoded', |
| html: ['text/html','application/xhtml+xml'], |
| js: 'text/javascript', |
| json: ['application/json', 'text/json'], |
| multipartForm: 'multipart/form-data', |
| rss: 'application/rss+xml', |
| text: 'text/plain', |
| xml: ['text/xml', 'application/xml'] |
| ] |
| |
| // URL Mapping Cache Max Size, defaults to 5000 |
| //grails.urlmapping.cache.maxsize = 1000 |
| |
| // What URL patterns should be processed by the resources plugin |
| grails.resources.adhoc.patterns = ['/images/*', '/css/*', '/js/*', '/plugins/*'] |
| |
| // The default codec used to encode data with ${} |
| grails.views.default.codec = "none" // none, html, base64 |
| grails.views.gsp.encoding = "UTF-8" |
| grails.converters.encoding = "UTF-8" |
| // enable Sitemesh preprocessing of GSP pages |
| grails.views.gsp.sitemesh.preprocess = true |
| // scaffolding templates configuration |
| grails.scaffolding.templates.domainSuffix = 'Instance' |
| |
| // Set to false to use the new Grails 1.2 JSONBuilder in the render method |
| grails.json.legacy.builder = false |
| // enabled native2ascii conversion of i18n properties files |
| grails.enable.native2ascii = true |
| // packages to include in Spring bean scanning |
| grails.spring.bean.packages = [] |
| // whether to disable processing of multi part requests |
| grails.web.disable.multipart=false |
| |
| // request parameters to mask when logging exceptions |
| grails.exceptionresolver.params.exclude = ['password'] |
| |
| // configure auto-caching of queries by default (if false you can cache individual queries with 'cache: true') |
| grails.hibernate.cache.queries = false |
| |
| environments { |
| development { |
| grails.logging.jul.usebridge = true |
| } |
| production { |
| grails.logging.jul.usebridge = false |
| // TODO: grails.serverURL = "http://www.changeme.com" |
| } |
| } |
| |
| // log4j configuration |
| 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' |
| } |
| |
| // documentation configuration |
| def basePath = System.properties['base.dir'] |
| |
| grails.doc.title = "Apache Wicket User Guide" |
| grails.doc.version = "6.x" |
| grails.doc.subtitle = "Free Online Guide for Apache Wicket framework" |
| grails.doc.authors = "Andrea Del Bene, Martin Grigorov, Carsten Hufe, Christian Kroemer, Daniel Bartl, Paul Borș, Tobias Soloschenko, Joachim Rohde" |
| grails.doc.images = new File("${basePath}/src/docs/img") |
| grails.doc.css = new File("${basePath}/src/docs/css") |
| grails.doc.logo = """<a href="http://ci.apache.org/projects/wicket/guide/6.x/" target="_self"><img height="80px" src="http://ci.apache.org/projects/wicket/guide/6.x/img/apache-wicket.png"/></a>""" |
| grails.doc.sponsorLogo = """<a href="http://www.apache.org/" target="_blank"><img style="width:300px;height:100px" src="http://wicket.apache.org/img/asf_logo_url.svg"/></a>""" |
| grails.doc.copyright=""" |
| Copyright © 2013-2016 — <a href="http://www.apache.org/" target="_blank">The Apache Software Foundation</a> |
| — <b style="color:#E8590A !important;">(Generated on: """ + (new Date()).format('yyyy-MM-dd - HH:mm:ss Z') + """)</b> |
| """ |