blob: 850e72ee5126a4cb624eca03c84b06a0f93949e5 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<project name="Comment_Correcter" default="correct" basedir=".">
<property name="src.dir" value="${basedir}/src"/>
<property name="cls.dir" value="${basedir}/build/classes"/>
<property name="comment.file" value="${basedir}/cddl.txt"/>
<property name="line.length" value="85"/>
<property name="files.dir" value="${basedir}"/>
<target name="correct">
<!-- compile the sources for the comment correcter -->
<delete
dir="${cls.dir}"/>
<mkdir
dir="${cls.dir}"/>
<javac
srcdir="${src.dir}"
destdir="${cls.dir}"
debug="true"/>
<!-- define the task -->
<taskdef
name="comment"
classname="org.netbeans.installer.infra.utils.comment.ant.CommentCorrecterTask"
classpath="${cls.dir}"/>
<!-- run the correcter -->
<comment text="${comment.file}" lineLength="${line.length}">
<fileset dir="${files.dir}">
<include name="**/*"/>
<exclude name="**/CVS/**"/>
<exclude name="**/nbproject/private/**/*"/>
<exclude name="**/nbproject/build-impl.xml"/>
<exclude name="**/nbproject/profiler-build-impl.xml"/>
<exclude name="**/nbproject/genfiles.properties"/>
<exclude name="**/nbproject/Makefile-Debug.mk"/>
<exclude name="**/nbproject/Makefile-Release.mk"/>
<exclude name="**/nbproject/Makefile-impl.mk"/>
</fileset>
</comment>
</target>
</project>