From 66a130f954319feaf8df6c442e4a695a305861df Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 24 Apr 2019 11:23:55 -0700 Subject: [PATCH] Revert directory location references back to using 'rootProject.projectDir.path'. Source file references must use the 'include:' directive and not 'link:' inside the source reference markup. --- spring-geode-docs/spring-geode-docs.gradle | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-geode-docs/spring-geode-docs.gradle b/spring-geode-docs/spring-geode-docs.gradle index e785513f..e2884634 100644 --- a/spring-geode-docs/spring-geode-docs.gradle +++ b/spring-geode-docs/spring-geode-docs.gradle @@ -37,9 +37,10 @@ asciidoctor { 'spring-data-geode-version' : "${springDataGeodeVersion}", 'spring-session-data-gemfire-version' : "${springSessionDataGeodeVersion}", 'spring-session-data-geode-version' : "${springSessionDataGeodeVersion}", - 'docs-src-dir' : "${githubUrl}/spring-geode-docs/src/main/java", - 'examples-dir' : "${githubUrl}/spring-geode-examples/", - 'samples-dir' : "${githubUrl}/spring-geode-samples/" + 'docs-dir' : rootProject.projectDir.path + '/spring-geode-docs/', + 'docs-src-dir' : rootProject.projectDir.path + '/spring-geode-docs/src/main/java', + 'examples-dir' : rootProject.projectDir.path + '/spring-geode-examples/', + 'samples-dir' : rootProject.projectDir.path + '/spring-geode-samples/' } javadoc {