xml 使用Visant绘制Ant目标依赖项的图形

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 使用Visant绘制Ant目标依赖项的图形相关的知识,希望对你有一定的参考价值。

<project name="vizfile" default="main">
    <taskdef name="vizant"
             classname="net.sourceforge.vizant.Vizant"
             classpath="${user.home}/.m2/repository/net/sourceforge/vizant/vizant/0.1.2/vizant-0.1.2.jar"/>
    <target name="main">
        <vizant antfile="./build.xml" outfile="build.dot">
            <attrstmt type="graph">
                <attr name="ranksep" value="1.2"/>
                <attr name="nodesep" value="0.5"/>
            </attrstmt>
        </vizant>
        <exec executable="dot">
            <arg line="-Tjpg build.dot -o build.jpg"/>
        </exec>
    </target>
</project>

以上是关于xml 使用Visant绘制Ant目标依赖项的图形的主要内容,如果未能解决你的问题,请参考以下文章

pom.xml详解

ANT--------构建文件build.xml

使用Ant构建当前构建目标的依赖关系

如何使用 Ant 和 Ivy 构建项目及其依赖项

如何在ANT构建中的多个目标“依赖”属性中使用一个目标?

为啥有排除 pom.xml / maven 中依赖项的依赖项的选项?