Repository: groovy Updated Branches: refs/heads/GROOVY_2_6_X de263e3c4 -> 1fb77670c
GROOVY-8436: IOException "Stream closed" occurred when rebuilding Apache Groovy in IntelliJ IDEA (cherry picked from commit 12ce9eb) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/1fb77670 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/1fb77670 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/1fb77670 Branch: refs/heads/GROOVY_2_6_X Commit: 1fb77670c2675d85ee27e19d1de7933dfc829de6 Parents: de263e3 Author: sunlan <[email protected]> Authored: Tue Jan 9 14:38:38 2018 +0800 Committer: sunlan <[email protected]> Committed: Tue Jan 9 14:55:08 2018 +0800 ---------------------------------------------------------------------- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/1fb77670/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 65a4041..374e5fc 100644 --- a/build.gradle +++ b/build.gradle @@ -409,6 +409,10 @@ allprojects { tasks.withType(JavaCompile) { options.encoding = 'UTF-8' options.incremental = true + + if (classpath) { + classpath = classpath + files(dgmConverter.outputDir) + } } if (rootProject.indyCapable()) {
