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.
19 lines
667 B
19 lines
667 B
apply id: 'docbook' |
|
|
|
defaultTasks 'docbookHtml' |
|
|
|
docbookSrcFileName = 'springsecurity.xml' |
|
docbookHtml.stylesheet = new File(projectDir, 'src/xsl/html-custom.xsl') |
|
docbookFoPdf.stylesheet = new File(projectDir, 'src/xsl/pdf-custom.xsl') |
|
|
|
docbookHtml.doLast { |
|
resourcesDir = new File(projectDir, 'src/resources') |
|
ant { |
|
docsDir = new File(buildDir, 'docs') |
|
copy(toDir: docsDir) {fileset(dir: resourcesDir)} |
|
copy(toDir: new File(docsDir, 'images')) {fileset(dir: new File(projectDir, 'src/docbook/images'))} |
|
} |
|
} |
|
|
|
/*docbookSrc = new File(project.buildDir, 'docbook/src') |
|
docbookDir = new File(project.buildDir, 'docbook/stylesheets')*/ |