Changeset 814


Ignore:
Timestamp:
Aug 17, 2010, 10:58:35 AM (13 years ago)
Author:
keesvb
Message:

re-added nimble 0.4, after re-adding plugin and running jack-be-nimble everything seems to work fine, also with WAR deployment

Location:
trunk
Files:
8 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/application.properties

    r809 r814  
    11#Grails Metadata file
    2 #Mon Aug 16 12:14:34 CEST 2010
     2#Tue Aug 17 10:04:53 CEST 2010
    33app.grails.version=1.3.4
    44app.name=gscf
     
    1111plugins.mail=0.9
    1212plugins.nadd-neutralizer=0.3
     13plugins.nimble=0.4-SNAPSHOT
    1314plugins.searchable=0.5.5.1
     15plugins.shiro=1.0.1
    1416plugins.tomcat=1.3.4
    1517plugins.webflow=1.3.4
  • trunk/grails-app/domain/dbnp/user/Profile.groovy

    r796 r814  
    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  */
     1
    152package dbnp.user
    163
    17 class Profile {
    18     static constraints = {
    19     }
     4class Profile extends grails.plugins.nimble.core.ProfileBase {
     5
     6        // Extend ProfileBase with your custom values here
     7
    208}
  • trunk/grails-app/domain/dbnp/user/User.groovy

    r796 r814  
    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  */
     1
    152package dbnp.user
    163
    17 class User {
    18     static constraints = {
    19     }
     4class User extends grails.plugins.nimble.core.UserBase {
     5
     6        // Extend UserBase with your custom values here
     7
    208}
Note: See TracChangeset for help on using the changeset viewer.