GEODE-1937: Don't use a relative path to the geode-examples location
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/0ad18488 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/0ad18488 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/0ad18488 Branch: refs/heads/feature/e2e-testing Commit: 0ad18488b800f34cca41cab022948ef3355d73d7 Parents: 1890e60 Author: Dan Smith <[email protected]> Authored: Tue Sep 27 16:10:46 2016 -0700 Committer: Dan Smith <[email protected]> Committed: Tue Sep 27 16:11:52 2016 -0700 ---------------------------------------------------------------------- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/0ad18488/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index b360c40..bc31c92 100755 --- a/build.gradle +++ b/build.gradle @@ -87,13 +87,13 @@ subprojects { } task cleanExamples(type: GradleBuild) { - buildFile = 'geode-examples/build.gradle' + buildFile = "${rootProject.projectDir}/geode-examples/build.gradle" tasks = ['clean'] } clean.dependsOn cleanExamples task buildExamples(type: GradleBuild, dependsOn: ':geode-assembly:installDist') { - buildFile = 'geode-examples/build.gradle' + buildFile = "${rootProject.projectDir}/geode-examples/build.gradle" tasks = ['build'] }
