Skip to content

Commit

Permalink
eclipseClasspath depends on downloadPlugins
Browse files Browse the repository at this point in the history
  • Loading branch information
oehme committed Apr 27, 2015
1 parent 560538e commit b4281e2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ class IdeaComponentPlugin implements Plugin<Project> {
]

project.plugins.withType(EclipsePlugin) [
project.tasks.getByName(EclipsePlugin.ECLIPSE_CP_TASK_NAME).dependsOn(idea.downloadIdea)
val eclipseClasspath = project.tasks.getByName(EclipsePlugin.ECLIPSE_CP_TASK_NAME)
eclipseClasspath.dependsOn(idea.downloadIdea, idea.downloadPlugins)
project.extensions.getByType(EclipseModel).classpath => [
plusConfigurations.add(ideaProvided)

Expand Down

0 comments on commit b4281e2

Please sign in to comment.