Skip to content

Commit

Permalink
version must be a constant in 2.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
burtbeckwith committed Oct 31, 2013
1 parent 068bdf1 commit 7b9befa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions JqueryUiGrailsPlugin.groovy
Expand Up @@ -2,13 +2,13 @@ class JqueryUiGrailsPlugin {
// @todo This MUST be updated when you update the version of jquery ui
static JQUERYUI_VERSION = "1.8.16"

// Put in here the minor revision of this plugin, appended to the JQUERY UI version automatically to
// make plugin release version
// Put in here the minor revision of this plugin
static PLUGIN_MINOR_REVISION = ""

// the plugin version
// NOTE: this does not compile correctly under Grails 2.0, use 1.3.7
def version = JQUERYUI_VERSION + (PLUGIN_MINOR_REVISION ? '.' + PLUGIN_MINOR_REVISION : '')
// the version attribute must be constant, so manually update this to be
// JQUERYUI_VERSION and PLUGIN_MINOR_REVISION concatenated, with a '.'
// if PLUGIN_MINOR_REVISION isn't blank
def version = '1.8.16'


def grailsVersion = "1.3 > *"
Expand Down

0 comments on commit 7b9befa

Please sign in to comment.