By default, the following repositories are configured in BuildConfig.groovy
repositories {
grailsPlugins()
grailsHome() // look inside the grails installation
grailsCentral()
}
I understand that the grailsHome()
repository corresponds to the JARs that are available within the local Grails installation, and I guess grailsPlugins()
corresponds to the repository where released Grails plugins are stored.
Am I right about these two, and if so, what is grailsCentral()
?