Skip to content

Commit

Permalink
Prepare for upgrade to Gradle 2.0
Browse files Browse the repository at this point in the history
MergePlugin now uses syntax appropriate for Gradle 2.0.

Issue: SPR-11934
  • Loading branch information
sbrannen committed Jul 1, 2014
1 parent e90143e commit 7497391
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -71,8 +71,8 @@ class MergePlugin implements Plugin<Project> {
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{
Expand Down

0 comments on commit 7497391

Please sign in to comment.