Fix typo in gradle plugin

This commit is contained in:
Dave Syer 2013-10-24 18:04:21 -04:00
parent 18ee229748
commit f8d5802230
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class ProjectLibraries implements Libraries {
this.providedConfigurationName);
if (provided != null) {
compile = compile.minus(provided);
runtime = compile.minus(provided);
runtime = runtime.minus(provided);
}
libraries(LibraryScope.COMPILE, compile, callback);