ZWT V0.3.1 JavaScript framework for Rich Internet Applications

zwt-tools:zcss-merge

Full name:

org.zeleos.zwt:zwt-tools:0.3.1:zcss-merge

Description:

Maven mojo to merge two CSS files with the org.zeleos.zwt.tools.merger.zcss.ZCSSMerger.

It basically adds the CSS rules of a patch file to the base file if they are not already present in the file.

Required Parameters
Name Type Description
outputDirectory java.io.File The output directory.
Default value is: ${basedir}/src/main/css
patchDirectory java.io.File The directory containing the patch files.
Default value is: ${basedir}/src/main/css
sourceDirectory java.io.File The source directory.
Default value is: ${basedir}/src/main/css
optional Parameters
Name Type Description
extension java.lang.String The file extension to use for output files.
Default value is: new.css
format boolean Format the output.
Default value is: true
includeComments boolean Include the comments in the output.
Default value is: true
optimize boolean Optimize the output.
Default value is: false
patchExtension java.lang.String The file extension of patch files.
Default value is: patch.css
sourceExtension java.lang.String The file extension of the source files.
Default value is: css