DESCRIPTION
        create-mvc

    Creates a new MVC Group.

SYNTAX
        create-mvc [options] [name] 

ARGUMENTS
        name
                The name of the group to be created.

OPTIONS
        --archetype
                Archetype to be searched for templates.
                (defaults to default)
        --controller
                Specifies the Controller template to be used.
                (defaults to Controller)
        --file-type
                Source file type.
                (defaults to groovy)
        --group
                Specifies the common template to use on all MVC members.
        --model
                Specifies the Model template to be used.
                (defaults to Model)
        --non-interactive
                Controls if the shell can ask for input or not.
        --skip-controller
                Skips the creation of the controller MVC member.
        --skip-model
                Skips the creation of the model MVC member.
        --skip-package-prompt
                Skips the usage of the application's default package if the name
                of the class is not fully qualified.
        --skip-view
                Skips the creation of the view MVC member.
        --view
                Specifies the View template to be used.
                (defaults to View)
        --with-controller
                Fully qualified className Controller to use.
                WARNING: the command will not create a file for this member.
        --with-model
                Fully qualified className Model to use.
                WARNING: the command will not create a file for this member.
        --with-view
                Fully qualified className View to use.
                WARNING: the command will not create a file for this member.
