0

Can I combine the following plugins together or are there any incompatibilities? How can I test if the plugins work well together?

    runtime ":zipped-resources:1.0"
    runtime ":cached-resources:1.0"
    runtime ":yui-minify-resources:0.1.4"
    compile ":cache-headers:1.1.5"
    compile ':cache:1.0.1'
Michael J. Lee
  • 12,278
  • 3
  • 23
  • 39
Michael
  • 32,527
  • 49
  • 210
  • 370

1 Answers1

0

The first four are all related since they're based on the http://grails.org/plugin/resources plugin, so you shouldn't have issues there. The versions will likely matter though.

The cache plugin is completely unrelated since it has nothing to do with static resources. It caches service and controller method calls, GSP fragments, and template content.

Burt Beckwith
  • 75,342
  • 5
  • 143
  • 156