Full name:
net.sourceforge.docbook-utils.maven-plugins:maven-html-cleaner-plugin:1.0.0.beta-1:transform
Description:
Attributes:
Name | Type | Since | Description |
---|---|---|---|
sourceDir | File | - | The directory, from which the search for source files starts, see
also sourceFiles.
Including DocBook content in a project site ${project.build.directory}/docbkx/html |
Name | Type | Since | Description |
---|---|---|---|
destinationDir | File | - | The directory where the well-formed files are placed.
Including DocBook content in a project site ${project.build.directory}/generated-site/xhtml/docbook Default value is: ${project.build.directory}/html-cleaner. |
htmlCleanerConfiguration | Properties | - | Specify the HTML Cleaner configuration properties. |
replaceExtensionMap | Map | - | In cases where the created file should have a different file
extension, this option can be used.
Example of replacing html with xhtml: <replaceExtensionMap> <html>xhtml</html> </replaceExtensionMap> |
skipHtmlCleaner | Boolean | - | Skip transforming HTML. Useful in cases when temporary no
transforming is needed. To speedup the build process.
The option can be added to the plug-ins configuration. Or as JVM option on the command line: -DskipHtmlCleaner=true Default value is: false. |
sourceFiles | String[] | - | List of source file patterns to scan for. The given patterns are
used for scanning for files that need to be clean up. The base
directory, from which the scanning starts is given through the sourceDir.
Some examples of possible patterns: filename.xml *.xml help*.xml directory/filename.xml directory/*.xml directory/directory/*.xml directory/**/*.xml Default values are: **/*.html **/*.xhtml **/*.xml |
Including DocBook content in a project site
In case the
docbkx-maven-plugin is used to convert DocBook content into
HTML pages, which should be included in the project site, use then
as destination directory:
${project.build.directory}/generated-site/xhtml/docbook
Example of replacing html with xhtml:
<replaceExtensionMap> <html>xhtml</html> </replaceExtensionMap>
The option can be added to the plug-ins configuration.
Or as JVM option on the command line:
-DskipHtmlCleaner=true
Including DocBook content in a project site
In case the
docbkx-maven-plugin is used to convert DocBook content into
HTML pages, which should be included in the project site, use then
as source directory:
${project.build.directory}/docbkx/html
Some examples of possible patterns:
filename.xml *.xml help*.xml directory/filename.xml directory/*.xml directory/directory/*.xml directory/**/*.xml
Default values are:
**/*.html **/*.xhtml **/*.xml