test7 classpath... try again
Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/3850c899 Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/3850c899 Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/3850c899 Branch: refs/heads/master Commit: 3850c899fcf8734bd1f74741e3eba892b5ea5f62 Parents: 7b4fa9d Author: Dale LaBossiere <[email protected]> Authored: Thu Sep 22 18:06:05 2016 -0400 Committer: Dale LaBossiere <[email protected]> Committed: Tue Sep 27 16:04:08 2016 -0400 ---------------------------------------------------------------------- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/3850c899/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 6bfd9ce..d909887 100644 --- a/build.gradle +++ b/build.gradle @@ -463,12 +463,13 @@ subprojects { classpath = files(sourceSets.test.output.classesDir.toString().replace('test', 'java7Test')) + classpath // Some of the tests have dependencies on other tests, adjust those classpaths too - classpath = files(classpath.collect { it.toString().replace('build/classes/test/', 'build/classes/java7test/') }) + classpath = files(classpath.collect { it.toString().replace('build/classes/test', 'build/classes/java7test') }) // Switch from java8 jars to java7 jars classpath = files(classpath.collect { it.toString().replace('java8', 'java7') }) } logger.debug "$project.path test.classpath: " + classpath.collect { it.toString() } +println "#### $project.path test.classpath: " + classpath.collect { it.toString() } } }
