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 {
this.providedConfigurationName);
if (provided != null) {
compile = compile.minus(provided);
runtime = compile.minus(provided);
runtime = runtime.minus(provided);
}
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