Development: checkspaceDescriptionChecks files for space characters at the beginning of lines. When working in a team or with different platforms/editors it happens that files are indented with spaces instead of tabs. This is particularly annoying if you have decided to use tabs exclusively. This task simply validates a bunch of files and checks if the whitespace characters at the beginning of the lines solely consist of tabs. ParametersThis task does not have any parameter attributes. Nested ElementsThis task supports the following nested elements. filesetThe usual Ant fileset, as you now it e.g. from the copy task. Examples<checkspace> <fileset dir="${project.src.dir}"> <include name="**/**.java"/> </fileset> <fileset dir="${project.dir}"> <include name="**/**.xml"/> <exclude name="dist/**"/> <exclude name="build/**"/> <exclude name="doc/**"/> <exclude name="**/changelog.xml"/> <exclude name="**/doc/text/*.xml"/> <exclude name="**/*-version.xml"/> </fileset> </checkspace> |