You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by comp boy <co...@hotmail.com> on 2002/04/23 01:41:05 UTC

Jacobe

Does anyone use Jacobe with ant to automate source code beautification, so
far I have:

<target name="beautify">
   <fileset dir="${src}" id="src.files">
      <include name="**/*.java"/>
   </fileset>
   <pathconvert pathsep=" " property="javafiles" refid="src.files"/>
   <exec dir="${src}" executable="d:\jacobe\jacobe.exe" os="Windows 2000" >
      <arg value="-nobackup"/>
      <arg value="-overwrite"/>
      <arg value="-v"/>
      <arg value="-cfg=d:\jacobe\sun.cfg"/>
      <arg value="${javafiles}"/>
   </exec>
</target>
Any ideas or suggestions are highly appreciated.



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>