You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2017/12/12 04:35:07 UTC

groovy git commit: Fix the compilation issue: package groovy.lang does not exist

Repository: groovy
Updated Branches:
  refs/heads/master 392d3ac4b -> b60703800


Fix the compilation issue: package groovy.lang does not exist


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/b6070380
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/b6070380
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/b6070380

Branch: refs/heads/master
Commit: b607038002ead0459ae56a2a662793859b3b9f51
Parents: 392d3ac
Author: sunlan <su...@apache.org>
Authored: Tue Dec 12 12:34:58 2017 +0800
Committer: sunlan <su...@apache.org>
Committed: Tue Dec 12 12:34:58 2017 +0800

----------------------------------------------------------------------
 gradle/test.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/b6070380/gradle/test.gradle
----------------------------------------------------------------------
diff --git a/gradle/test.gradle b/gradle/test.gradle
index 9bb27c7..4415faf 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -134,7 +134,7 @@ ext.extModuleOutputDir = file("$buildDir/testFixtures/extmodule")
 ext.extModuleRepoDir = file("$extModuleOutputDir/repo")
 
 task compileTestExtensionModule(type: JavaCompile) {
-    classpath = files(jar.archivePath)
+    classpath = files(jar.archivePath) + sourceSets.main.runtimeClasspath
     source fileTree("$extModuleFixtureDir/src/main/java")
     destinationDir = file("$extModuleOutputDir/classes")
     sourceCompatibility = 1.6