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: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>