Hi,

    I wrote a simple Ant task that generates statistics (number of files and
number of lines) on the source files of the project. If there's any interest
in this, I'd be happy to submit the code.

    Best regards,
    Cata

    Sample output:

[lc] Files of type "java": 2 => 338 lines.
[lc] Files of type "properties": 1 => 10 lines.
[lc] --------------------------------------------
[lc] TOTAL files: 3 => 348 lines.

    Sample usage:

<!-- ==================== LC Target =========================== -->

  <target name="lc" depends="declare"
   description="Count the number of lines in the current project.">
    <lc>
      <fileset dir="src" excludes="**/.*.swp"/>
      <fileset dir="../common/src" excludes="**/.*.swp"/>
    </lc>
  </target>



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to