diff --git a/buildSrc/src/main/groovy/org/springframework/build/gradle/MergePlugin.groovy b/buildSrc/src/main/groovy/org/springframework/build/gradle/MergePlugin.groovy index ab4a0d3cda..426b5aabfe 100644 --- a/buildSrc/src/main/groovy/org/springframework/build/gradle/MergePlugin.groovy +++ b/buildSrc/src/main/groovy/org/springframework/build/gradle/MergePlugin.groovy @@ -71,8 +71,8 @@ class MergePlugin implements Plugin { Configuration runtimeMerge = project.configurations.create("runtimeMerge") // Ensure the IDE can reference merged projects - project.eclipse.classpath.plusConfigurations += [runtimeMerge] - project.idea.module.scopes.PROVIDED.plus += runtimeMerge + project.eclipse.classpath.plusConfigurations += [ runtimeMerge ] + project.idea.module.scopes.PROVIDED.plus += [ runtimeMerge ] // Hook to perform the actual merge logic project.afterEvaluate{