(Quick Reference)

plugin Usage

A plugin provides additional capability to the Grails runtime and is created with the create-plugin command:

grails create-plugin simple

This will create a plugin project which can then be packaged with package-plugin:

grails package-plugin

and installed into Grails applications with install-plugin:

grails install-plugin ../grails-simple-0.1.zip

Refer to the user guide topic on plugins for more information.