oyvinmar / grails-closure-compiler

Grails Resources Plugin for Google Closure Compiler
Other
7 stars 6 forks source link

removed runtime dependency on a specific version of resources plugin #3

Closed ColinHarrington closed 11 years ago

ColinHarrington commented 11 years ago

The plugin descriptor already depends on resources. Adding a specific section in the dependencies causes issues if you are using a different version of resource.

Users will be presented with this message: "You currently already have a version of the plugin installed [resources-1.2.RC2]. Do you want to update to [resources-1.1.6]? [y,n]" or it will fail with the --non-interactive flag

ColinHarrington commented 11 years ago

workaround - add this in BuildConfig:

compile(":closure-compiler:0.9") { excludes 'resources' }