Repository: groovy Updated Branches: refs/heads/master 617eb2faf -> 12ce9eb11
GROOVY-8436: IOException "Stream closed" occurred when rebuilding Apache Groovy in IntelliJ IDEA Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/12ce9eb1 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/12ce9eb1 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/12ce9eb1 Branch: refs/heads/master Commit: 12ce9eb11d7ed1050ccf67d72e853bffebeda91b Parents: 617eb2f Author: sunlan <[email protected]> Authored: Tue Jan 9 14:38:38 2018 +0800 Committer: sunlan <[email protected]> Committed: Tue Jan 9 14:38:38 2018 +0800 ---------------------------------------------------------------------- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/12ce9eb1/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index a08a5dd..2d691f6 100644 --- a/build.gradle +++ b/build.gradle @@ -406,6 +406,10 @@ allprojects { tasks.withType(JavaCompile) { options.encoding = 'UTF-8' options.incremental = true + + if (classpath) { + classpath = classpath + files(dgmConverter.outputDir) + } } if (rootProject.indyCapable()) {
