You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2019/10/04 09:25:27 UTC

[lucene-solr] 06/07: Enable dependsOn for buildPdf

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch jira/SOLR-13452_gradle_7_refguide
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 019c3bda409731b9e91afc9f922c21c6d651953b
Author: Dawid Weiss <dw...@apache.org>
AuthorDate: Fri Oct 4 10:00:24 2019 +0200

    Enable dependsOn for buildPdf
---
 solr/solr-ref-guide/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/build.gradle b/solr/solr-ref-guide/build.gradle
index d6f3e94..27e9a87 100644
--- a/solr/solr-ref-guide/build.gradle
+++ b/solr/solr-ref-guide/build.gradle
@@ -356,7 +356,7 @@ task buildRawPdf {
 }
 
 task buildPdf(type: JavaExec) {
-    // dependsOn buildRawPdf
+    dependsOn buildRawPdf
 
     classpath = sourceSets.tools.runtimeClasspath
     main = 'ReducePDFSize'