All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.plugins.content.2.6.1.source-code.application.groovy Maven / Gradle / Ivy

Go to download

A plugin used to manage contents like static pages, menus etc. at one place. Also provides shortened and user friendly urls.

There is a newer version: 2.6.2
Show newest version
/*
 * Copyright (c) 2016, CauseCode Technologies Pvt Ltd, India.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or
 * without modification, are not permitted.
 */

grails.serverURL = 'http://localhost:8080'

grails.resources.modules = {
    validator = {
        resource url: '/js/jquery.validate.js'
    }
}

environments {
    test {
        grails.gorm.autoFlush = true
    }
}

grails.plugin.springsecurity.securityConfigType = "Annotation"

ckeditor = {
    upload = {
        basedir = "/images/"
        overwrite = false
        image = {
            browser = true
            upload = true
            allowed = ['jpg', 'gif', 'jpeg', 'png']
            denied = []
        }
    }
}

grails.app.context = "/"
grails.views.default.codec = "none" // none, html, base64
grails.views.gsp.encoding = "UTF-8"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy