Commit f8d58022 authored by Dave Syer's avatar Dave Syer

Fix typo in gradle plugin

parent 18ee2297
...@@ -49,7 +49,7 @@ class ProjectLibraries implements Libraries { ...@@ -49,7 +49,7 @@ class ProjectLibraries implements Libraries {
this.providedConfigurationName); this.providedConfigurationName);
if (provided != null) { if (provided != null) {
compile = compile.minus(provided); compile = compile.minus(provided);
runtime = compile.minus(provided); runtime = runtime.minus(provided);
} }
libraries(LibraryScope.COMPILE, compile, callback); libraries(LibraryScope.COMPILE, compile, callback);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment