Pregunta

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.

¿Fue útil?

Solución 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

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top