0

Is there a Maven repo from where I can download grails plugin files.

I know I can do

install-plugin name

but I want to store it in my repo.

tim_yates
  • 167,322
  • 27
  • 342
  • 338
RSM
  • 423
  • 3
  • 7
  • 20
  • 2
    You shouldn't do `grails install-plugin name`, you should put the plugin resolution into the plugins section of `BuildConfig.groovy`, ie: `compile ":mail:1.0.1"` – tim_yates Aug 08 '13 at 21:30
  • 1
    Can you please explain what the difference is? – micha Aug 08 '13 at 21:52
  • 1
    @micha [install-plugin is deprecated as of Grails 2](http://grails.org/doc/2.2.x/ref/Command%20Line/install-plugin.html), it didn't allow you to manage dependencies, and so the way to do it now is via `BuildConfig` :) – tim_yates Aug 08 '13 at 22:02
  • I used Buildconfig to add local plugins and install-plugin to install plugins like jms and activemq and that was in the grials documents. But now I know the right way. Thanks a lot – RSM Aug 09 '13 at 15:31

1 Answers1

5

Grails Plugin Repo can be found here http://repo.grails.org/grails/plugins/org/grails/plugins/

or you can browse Artifactory and search for the plugin you need.

dmahapatro
  • 49,365
  • 7
  • 88
  • 117