build.gradle 358 B

1234567891011121314
  1. usePlugin('docbook')
  2. defaultTasks 'docbookHtmlSingle'
  3. docbookSrcFileName = 'faq.xml'
  4. docbookHtmlSingle.stylesheet = new File(projectDir, 'src/xsl/html-single-custom.xsl')
  5. docbookHtmlSingle.doLast {
  6. resourcesDir = new File(projectDir, 'src/resources')
  7. ant {
  8. docsDir = new File(buildDir, 'docs')
  9. copy(toDir: docsDir) {fileset(dir: resourcesDir)}
  10. }
  11. }