Skip to content

Instantly share code, notes, and snippets.

@davidkuster
Last active August 29, 2015 13:56
Show Gist options
  • Save davidkuster/8852697 to your computer and use it in GitHub Desktop.
Save davidkuster/8852697 to your computer and use it in GitHub Desktop.
Grails BuildConfig.groovy - exclude console plugin from prod env
import grails.util.Environment
// don't include console plugin in prod
if ( Environment.current != Environment.PRODUCTION ) {
compile ":console:1.3"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment