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
2010-04-26 09:44:50
A:
If the commands are failing for some reason, you can remove them by:
- delete the entry for the plugin from application.properties
- delete the plugin folder from ~/.grails/grails version/projects/project name/plugins
leebutts
2010-04-26 10:42:08
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
2010-04-26 23:56:13
True, IDE's may lock the plugin JARs.
leebutts
2010-04-27 10:12:06