My Grails (2.3.6) app's BuildConfig.groovy
:
grails {
project {
dependency {
resolution = {
repositories {
inherits true
grailsHome()
mavenLocal()
mavenRepo "http://myartifactory01/myrepo"
grailsPlugins()
grailsCentral()
mavenCentral()
}
plugins {
compile ":myplugin:0.1"
}
}
}
}
server {
port {
http = 4384
}
}
}
When I run run-app
I get the following error:
| Error Required Grails build dependencies were not found. This is normally
due to internet connectivity issues (such as a misconfigured proxy) or missing
repositories in grails-app/conf/BuildConfig.groovy. Please verify your
configuration to continue.
I have verified that the URL points to a valid (Artifactory) maven repo where the myplugin
plugin is stored. Is there something wrong with my BuildConfig
? Is it missing any properties, or is anything misconfigured?