views:

31

answers:

1

I installed a plugin using 'grails install-plugin http://blahblah/blah.zip'. The location does not follow the grailsRepo standard or maven standard. It's a simple zip file on a remote server.

How do I configure grails so that it finds the plugin?

A: 

in grails project directory grails-app/conf/BuildConfig.groovy

grails.plugin.location."pluginName"="../path/to/plugin" 
Aaron Saunders
Does this work with a HTTP location?
tuler