The script below is the basic template being used on all
the projects we're building in an application, to provide a
consistent build file:
<project name="project name" default="build"
basedir=".">
<dirname property="buildscript.basedir"
file="${ant.file}" />
<property
file="${buildscript.basedir}/my.build.properties" />
<property
file="${buildscript.basedir}/build.properties" />
<property name="build.impl"
value="build_impl.xml"/>
<import
file="${common.dir}/build_standard_project.xml" />
<import
file="${common.dir}/build_standard_project_server_exten
sions.xml" />
</project>
When Vizant parses this build file it outputs:
digraph "G" {
graph ["rankdir"="LR",];
}
Is this a simple case of vizant not supporting the
import tag?
I have the same problem too.. My ant build scripts use nested build scripts and the nested files are not parsed.
But otherwise.. this is a cool and useful tool.
This problem is fixed. The new version (yet to be released) will now support <import> tags.