Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion JqueryGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import org.codehaus.groovy.grails.commons.ConfigurationHolder
class JqueryGrailsPlugin {
// Only change the point release. Edit o.c.g.g.o.j.JQueryConfig.SHIPPED_VERSION when changing jQuery resource version
// This should match JQueryConfig.SHIPPED_VERSION but must be a literal here due to how AstPluginDescriptorReader parses this file
def version = "1.7"
def version = "1.7.1"

static SHIPPED_SRC_DIR = 'jquery'

Expand Down
2 changes: 1 addition & 1 deletion scripts/InstallJQuery.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Ant.property(environment:"env")
grailsHome = Ant.antProject.properties."env.GRAILS_HOME"

// Hard coded for installation purpose
def jQueryVersion = '1.7'
def jQueryVersion = '1.7.1'
def jQuerySources = 'jquery'

includeTargets << grailsScript("_GrailsEvents")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class JQueryConfig {
def defaultPlugins
def plugins = [:]

static SHIPPED_VERSION = '1.7'
static SHIPPED_VERSION = '1.7.1'

def init() {
ApplicationHolder.application.metadata.findAll{ key, value ->
Expand Down
Loading