Skip to content

Commit

Permalink
Fixed regression in runtime classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
oehme committed Dec 16, 2015
1 parent aaa6aaf commit 5ee7c10
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class IdeaDevelopmentPlugin implements Plugin<Project> {
]
java.sourceSets.all [
compileClasspath = compileClasspath.plus(ideaProvided)
runtimeClasspath = runtimeClasspath.plus(idea.ideaRunClasspath)
runtimeClasspath = runtimeClasspath.plus(ideaProvided).plus(idea.toolsJar)
]
]

Expand Down Expand Up @@ -187,4 +187,4 @@ class IdeaDevelopmentPlugin implements Plugin<Project> {
ideaModel.module.scopes.get("PROVIDED").get("plus").add(ideaProvided)
]
}
}
}

0 comments on commit 5ee7c10

Please sign in to comment.