Since there was a small bug with the config-file in 1.3.2.3 I released 1.3.2.4 which comes with it own JQueryConfig.groovy in jquery-1.3.2.4/grails-app/conf/.
The two options sources and version moved to jquery.sources and jquery.version.
You can access them in your code (if needed) like this:
GroovyClassLoader classLoader = new GroovyClassLoader(getClass().getClassLoader())
ConfigObject config = new ConfigSlurper().parse(classLoader.loadClass(‘JQueryConfig’))
def jQueryVersion = config.jquery.version
Cheers
