Custom Plugin dependencies.groovy is ignored
问题 The Problem: I've built a custom grails plugin, defined my dependencies on other plugins via BuildConfig.groovy and packaged my plugin into a zip file. I then added the zip to my local maven repository and all is well. The file dependencies.groovy within the zip has my dependent plugin entries as it should. Example: grails.project.dependency.resolution = { inherits 'global' log 'warn' repositories { grailsCentral() } dependencies { // runtime 'mysql:mysql-connector-java:5.1.5' } plugins {