I'm trying to understand the BuildConfig.groovy file in Grails 1.3.7.
grails.project.dependency.resolution = {
plugins {
build "acme:acme-cache:latest.integration"
}
dependencies {
build "com.foo.bar:foobar:1.0.5"
runtime "org.apache.httpcomponents:httpclient:4.0.3"
compile("com.thoughtworks.xstream:xstream:1.3.1")
}
}
I understand that Grails plugins get listed under the plugins{} section. I'm assuming libraries (ZIP, JAR, etc) are listed under the dependencies section.
What's the purpose of build, runtime, and compile, and when would you use one over the other?
