Does anyone know how I can code something along these lines: def isolatedConfig = configurations.detachedConfiguration()
dependencies {
isolatedConfig.addDependency group: "foo", name:"bar", version:"123"
}
isolatedConfig.resolve()
Would be very nice if I could keep the syntactic sugar, but I can't figure
out how to stick the detached config into gradle so that the
DefaultDependencyHandler finds it (which I figure is what I really want?)
Thanks
Cheers,
-Daniel
