Sergey
Sergey

Reputation: 1

jQuery in Grails 1.3.7

Can you please tell how to connect a jquery plugin in Grails 1.3.7.

While trying to install with the command "grails install-plugin jquery" from within a directory with the plugin appears the following text

"Resolving dependencies ... Dependencies resolved in 798ms. Running script C: \ grails \ scripts \ InstallPlugin.groovy Environment set to development Application expects grails version [1.3.5], but GRAILS_HOME is version [1.3.7] - use the correct Grails version or run 'grails upgrade' if this Grails version is newer than the version your application expects. "

Trying to install jQuery Plugin 1.4.4.1 with http://grails.org. I would be very grateful for your help!

Upvotes: 0

Views: 625

Answers (2)

Fivell
Fivell

Reputation: 11929

you can change app.grails.version in application.properties file

Upvotes: 0

threeistoomany
threeistoomany

Reputation: 21

It looks like you have a version mismatch between the version of Grails that you're currently using and the version that was used when your application was originally created. Run 'grails-upgrade' and when that is complete, try installing your plugin again. You're not going to be able to install the jQuery plugin until you resolve the version mismatch issue.

Mike

Upvotes: 1

Related Questions