Search code examples
grailsversiongrails-plugin

How to list all older versions of Grails plugins?


The Grails Plugins site only seems to list the latest versions of all the Grails plugins. But what if I wanted to see a list of other available (older) versions for each plugin? Is there a Grails SDK command/target I can issue to see old plugins?

I ask because I'm using a plugin whose current latest release is broke and its version is "2.0-RC2". Since it's a release candidate, I'd like to know what the last stable (non-RC) version is.


Solution

  • There is no such command to see old plugins.

    If you are referring to Spring Security Core plugin then corresponding github repository has two branches:

    master referring to 2.0-RC2 and 1.x referring to the last stable release 1.2.7.3.

    On a side note, if you want to see all installed plugins with their versions then below command can be issued:

    grails list-plugins --installed