faq.gradle 440 B

12345678910111213141516
  1. apply id: 'base'
  2. apply id: 'docbook'
  3. defaultTasks 'docbookHtmlSingle'
  4. [docbookHtml, docbookFoPdf, docbookHtmlSingle]*.sourceFileName = 'faq.xml'
  5. docbookHtmlSingle.stylesheet = new File(projectDir, 'src/xsl/html-single-custom.xsl')
  6. docbookHtmlSingle.doLast {
  7. resourcesDir = new File(projectDir, 'src/resources')
  8. ant {
  9. docsDir = new File(buildDir, 'docs')
  10. copy(toDir: docsDir) {fileset(dir: resourcesDir)}
  11. }
  12. }