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:23 UTC

[lucene-solr] 02/07: Removing non-functional stuff from before.

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 c678555c1cf5c6a1571b95af091f50f6722e91d2
Author: Dawid Weiss <dw...@apache.org>
AuthorDate: Tue Oct 1 17:28:19 2019 +0200

    Removing non-functional stuff from before.
---
 solr/solr-ref-guide/build.gradle | 41 +---------------------------------------
 1 file changed, 1 insertion(+), 40 deletions(-)

diff --git a/solr/solr-ref-guide/build.gradle b/solr/solr-ref-guide/build.gradle
index b48727e..f5cc69e 100644
--- a/solr/solr-ref-guide/build.gradle
+++ b/solr/solr-ref-guide/build.gradle
@@ -191,7 +191,7 @@ task bareBonesAsciiDoctor(type: org.asciidoctor.gradle.AsciidoctorTask) {
   backend "html5"
   logDocuments false
   separateOutputDirs false
-  
+
   options([
     header_footer: false,
     doctype: 'book',
@@ -238,42 +238,3 @@ task bareBonesHtmlValidation(type: JavaExec) {
     args += "-check-all-relative-links"
   }
 }
-
-// general Asciidoc params for HTML conversion - barebones if still needed?
-asciidoctor {
-  doFirst {
-    println ("Starting Ref Guide build")
-  }
-  doLast {
-    println ("Finished Ref Guide build")
-  }
-  logDocuments = true
-  outputs.upToDateWhen { false }
-
-  backends 'html5'
-  sourceDir file('src/')
-  outputDir file('../build/solr-ref-guide/')
-  options doctype: 'book'
-
-  attributes [
-          /*
-    safemode: 'unsafe',
-    source-highlighter : 'coderay',
-    'figure-caption!' : '' ,
-    idprefix : '' ,
-    idseparator : '-' ,
-    icons : 'font' ,
-    icon-set : 'fa' ,
-    section-toc : ''
-           */
-  ]
-}
-
-// Jekyll for HTML conversion - doesn't work yet
-task jekyll(type: JRubyExec) {
-  dependsOn jrubyPrepare
-
-  script 'jekyll'
-  workingDir = file('src/')
-  scriptArgs 'build', workingDir
-}