You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
448 B
16 lines
448 B
apply plugin: 'base' |
|
apply plugin: 'docbook' |
|
|
|
defaultTasks 'docbookHtmlSingle' |
|
|
|
[docbookHtml, docbookFoPdf, docbookHtmlSingle]*.sourceFileName = 'faq.xml' |
|
|
|
docbookHtmlSingle.stylesheet = new File(projectDir, 'src/xsl/html-single-custom.xsl') |
|
|
|
docbookHtmlSingle.doLast { |
|
resourcesDir = new File(projectDir, 'src/resources') |
|
ant { |
|
docsDir = new File(buildDir, 'docs') |
|
copy(toDir: docsDir) {fileset(dir: resourcesDir)} |
|
} |
|
}
|
|
|