From 7a33b1a5d5658a3a781dd59e8b05398ad819efc4 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Tue, 30 Jan 2018 19:00:38 +0100 Subject: [PATCH] BATCH-2673: fix the PDF version of the reference documentation Before this commit, the file name and content of the PDF version of the reference documentation were incorrect. The file was empty and named "toggle.pdf" instead of "spring-batch-reference.pdf". This commit fixes the PDF file name and content. Resolves BATCH-2673 --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d5ee2a624..2efa81e4c 100644 --- a/build.gradle +++ b/build.gradle @@ -743,7 +743,7 @@ task docsZip(type: Zip) { exclude 'pdf/common-patterns.pdf' exclude 'pdf/domain.pdf' exclude 'pdf/index.pdf' - exclude 'pdf/index-single.pdf' + exclude 'pdf/toggle.pdf' exclude 'pdf/job.pdf' exclude 'pdf/jsr-352.pdf' exclude 'pdf/readersAndWriters.pdf' @@ -759,6 +759,8 @@ task docsZip(type: Zip) { exclude 'pdf/whatsnew.pdf' exclude 'pdf/glossary.pdf' + rename 'index-single.pdf', 'spring-batch-reference.pdf' + into 'reference' } }