I user apigen to genereate my phpdoc out of netbeans. But now I want to use it in my antscript.
I've downloaded the standalone version for windows. https://github.com/apigen/apigen/downloads The newest 2.8.0 version.
My ant script looks like this.
<target name="phpdocWindows">
<echo message="Creating PHPDoc" />
<mkdir dir="phpdoc" />
<exec executable="cmd" dir="." spawn="false">
<arg line="C:/xampp/php/apigen/apigen.bat --source Classes --destination phpdoc"/>
</exec>
</target>
The mkdir command works fine, but then the exec command isn't performed ... I don't get any errors.