When opening a build.xml ant script (filetype: XML + XSL , xsl file 'Ant Script'), yEd does not generate edges for targets that have many dependencies (attribute "depends")
I would be willing to fix it if the file "ant2graphml.xsl" (contained inside yed.jar) is released under a permissive license
Ant build.xml example:
<project name="example" basedir=".">
<target name="init"/>
<target name="run-1" depends="init"/>
<target name="run-2" depends="init"/>
<target name="run-all" depends="run-1,run-2" />
</project>
References to 'run-all' should come from 'run-1' and 'run-2', but that doesn't happen
yEd version is 3.10.2