Skip to content

Instantly share code, notes, and snippets.

@moskinson
Last active August 29, 2015 14:05
Show Gist options
  • Save moskinson/cc694a06b1d8f1b4e3ca to your computer and use it in GitHub Desktop.
Save moskinson/cc694a06b1d8f1b4e3ca to your computer and use it in GitHub Desktop.
Bad techniques in ApplicationResources.groovy of a Grails app
//Wrong
modules = {
jqueryUI {
dependsOn 'jquery'
resource url: 'css/jquery-ui-1.8.16.custom.css'
resource url: 'js/lib/jquery/jquery.min.js'
}
}
//OK
modules = {
jqueryUiJS {
resource url: 'js/lib/jquery/jquery.min.js'
}
jqueryUiCSS {
resource url: 'css/jquery-ui-1.8.16.custom.css'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment