i think I am having trouble with using the correct terminology which is why I cannot find an answer to this.
My build.gradle has the following dependencies :
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.6'
testCompile 'junit:junit:4.11'
}
how do I configure the groovy dependency so that when this project becomes a dependency of another, groovy isn’t installed as a dependency? The intention is to use the version of groovy in the parent project.
Thanks, John