Last updated by
6 months ago
Page: Creating Plugins, Version:23
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
- Fill out this form with the details of your plugin.
build(':release:2.0.4', ':rest-client-builder:1.0.2') {
export = false
}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