From 7c9476e98519e4543dbd34cbc76d21e6e6542126 Mon Sep 17 00:00:00 2001 From: Christoph Strobl Date: Wed, 3 Dec 2014 08:19:30 +0100 Subject: [PATCH] DATAREDIS-361 - Read html resources for docs zip from asciidoctor output dir. We now read generated html resources along with required css files from the asciidoctor output directory. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 89d42389a..c2f7ba9f1 100644 --- a/build.gradle +++ b/build.gradle @@ -212,7 +212,7 @@ task docsZip(type: Zip, dependsOn:['asciidoctor', 'referencePdf' ]) { into 'api' } - from ("$buildDir/reference/html") { + from ("$asciidoctor.outputDir") { include "index.html" include "spring.css" into 'reference/html'