Changeset 790


Ignore:
Timestamp:
Aug 9, 2010, 2:29:35 PM (13 years ago)
Author:
duh
Message:
  • removed Nimble plugin as it breaks war deployments on Tomcat
Location:
trunk
Files:
3 added
4 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/application.properties

    r788 r790  
    11#Grails Metadata file
    2 #Fri Aug 06 00:36:52 CEST 2010
     2#Mon Aug 09 14:17:53 CEST 2010
    33app.grails.version=1.3.3
    44app.name=gscf
     
    1111plugins.mail=0.9
    1212plugins.nadd-neutralizer=0.3
    13 plugins.nimble=0.4-SNAPSHOT
    1413plugins.searchable=0.5.5
    1514plugins.shiro=1.0.1
  • trunk/grails-app/domain/nimble/Profile.groovy

    r784 r790  
    1 
     1/**
     2 * Profile Domain Class
     3 *
     4 * Description of my domain class
     5 *
     6 * @author  your email (+name?)
     7 * @since       2010mmdd
     8 * @package     ???
     9 *
     10 * Revision information:
     11 * $Rev$
     12 * $Author$
     13 * $Date$
     14 */
    215package nimble
    316
    4 class Profile extends grails.plugins.nimble.core.ProfileBase {
    5 
    6         // Extend ProfileBase with your custom values here
    7 
     17class Profile {
     18    static constraints = {
     19    }
    820}
  • trunk/grails-app/domain/nimble/User.groovy

    r784 r790  
    1 
     1/**
     2 * User Domain Class
     3 *
     4 * Description of my domain class
     5 *
     6 * @author  your email (+name?)
     7 * @since       2010mmdd
     8 * @package     ???
     9 *
     10 * Revision information:
     11 * $Rev$
     12 * $Author$
     13 * $Date$
     14 */
    215package nimble
    316
    4 class User extends grails.plugins.nimble.core.UserBase {
    5 
    6         // Extend UserBase with your custom values here
    7 
     17class User {
     18    static constraints = {
     19    }
    820}
Note: See TracChangeset for help on using the changeset viewer.