Using Grails 2.4.3, how can I eliminate the dependency defined in the build ?
Example
Grails comes with the
spock-core-0.7-groovy-2.0.jar ; when adding a standard global dependency exception:
... grails.project.dependency.resolution = { // inherit Grails' default dependencies inherits('global') { excludes 'spock-core' } ...
Spock is excluded from all dependency areas except the build .
source share