Ignore:
Timestamp:
Mar 24, 2010, 3:28:33 PM (14 years ago)
Author:
gav
Message:

Upgrade to Grails-1.2.1, all plugins upgraded to latest versions and configs adjusted to suite.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        11*.log
        22*.war
         3target
  • trunk/grails-app/conf/Config.groovy

    r440 r449  
    3333grails.converters.encoding="UTF-8"
    3434
     35// enable Sitemesh preprocessing of GSP pages
     36grails.views.gsp.sitemesh.preprocess = true
     37// scaffolding templates configuration
     38grails.scaffolding.templates.domainSuffix = 'Instance'
     39
     40// Set to false to use the new Grails 1.2 JSONBuilder in the render method
     41grails.json.legacy.builder=false
     42
    3543// enabled native2ascii conversion of i18n properties files
    3644grails.enable.native2ascii = true
     45
     46// whether to install the java.util.logging bridge for sl4j. Disable fo AppEngine!
     47grails.logging.jul.usebridge = true
     48// packages to include in Spring bean scanning
     49grails.spring.bean.packages = []
     50
    3751
    3852/**
     
    7084    }
    7185
    72     // This is for the builtin stuff and from the default Grails-1.1.1 config.
     86    // This is for the built-in stuff and from the default Grails-1.2.1 config.
    7387    error 'org.codehaus.groovy.grails.web.servlet',  //  controllers
    7488            'org.codehaus.groovy.grails.web.pages', //  GSP
     
    8094            'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
    8195            'org.springframework',
    82             'org.hibernate'
     96            'org.hibernate',
     97            'net.sf.ehcache.hibernate'
    8398
    8499    warn   'org.mortbay.log' // Jetty
Note: See TracChangeset for help on using the changeset viewer.