How to list all older versions of Grails plugins?
Asked Answered
E

2

6

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.

Extremadura answered 29/4, 2014 at 19:57 Comment(0)
S
2

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
Safier answered 29/4, 2014 at 20:8 Comment(2)
Thanks @Safier (+1) - but how did you know that the last stable release is 1.2.7.3? That version number doesn't appear anywhere on the 1.x link you provided!Extremadura
Every grails plugin comes with a plugin descriptor which provides the version of the plugin.Safier
F
5

You can see the plugins at the main repo site here. The site is referenced via grailsCentral() in the BuildConfig.groovy file which in turn references the repo site in the org.codehaus.groovy.grails.resolve.maven.aether.config.RepositoriesConfiguration.groovy file

Fortuity answered 30/11, 2014 at 22:44 Comment(0)
S
2

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
Safier answered 29/4, 2014 at 20:8 Comment(2)
Thanks @Safier (+1) - but how did you know that the last stable release is 1.2.7.3? That version number doesn't appear anywhere on the 1.x link you provided!Extremadura
Every grails plugin comes with a plugin descriptor which provides the version of the plugin.Safier

© 2022 - 2024 — McMap. All rights reserved.