Last updated by
1 year ago
Page: Creating Plugins, Version:20
Publishing Plugins
Imagine you have created a new plugin as described in the user guide and that you now want to make it publicly available so that any Grails developer can use it. The process for making this wish a reality is straightforward:- Register on this site if you haven't already done so
- Email dev@grails.codehaus.org (you will have to subcribe to the mailing list first) and provide:
- your grails.org username
- the name of the plugin (whatever you passed to the
create-plugincommand) - a link to the source code for your plugin
publish-plugin command:grails publish-plugin --no-scm
list-plugins command as well as in the plugin portal. And of course users will be able to install the plugin either via a dependency declaration in grails-app/conf/BuildConfig.groovy or via the install-plugin command.We do recommend that you check out the full Release plugin user guide, because there are many options available to you, including a mechanism to put your grails.org credentials in the ~/.grails/settings.groovy file (so you don't have to enter them every time you publish a plugin).Next: Understanding Plugins