views:

132

answers:

2

is it possible to install and uninstall plugins manually in grails?? if yes, how can it be done?

+1  A: 

That's what the

grails install-plugin <plugin>

and

grails uninstall-plugin <plugin>

commands are for. See the command line reference at http://www.grails.org/doc/latest/.

Stefan
A: 

If the commands are failing for some reason, you can remove them by:

  1. delete the entry for the plugin from application.properties
  2. delete the plugin folder from ~/.grails/grails version/projects/project name/plugins
leebutts
Only if your not using an IDE such as STS on Windoz, in which caase you may need to shut it down to remove the files in step 2
Scott Warren
True, IDE's may lock the plugin JARs.
leebutts