Raible's Wiki
Raible Designs AppFuseHomepage- Korean - Chinese - Italian - Japanese QuickStart Guide User Guide Tutorials Other ApplicationsStruts ResumeSecurity Example Struts Menu
Set your name in
UserPreferences
Referenced by
JSPWiki v2.2.33
Hide Menu |
This is version 1.
It is not the current version, and thus it cannot be edited. This page is designed to demonstrate how to setup Vizant in AppFuse.
#
# Vizant - http://vizant.sf.net
#
vizant.version = 0.1.1
vizant.dir=${lib.dir}/vizant-${vizant.version}
vizant.jar=${vizant.dir}/vizant.jar
<!-- Visant task for visualizing Ant tasks -->
<target name="vizant">
<taskdef name="vizant" classname="net.sourceforge.vizant.Vizant"
classpath="${vizant.jar}"/>
<mkdir dir="${build.dir}/vizant"/>
<vizant antfile="build.xml" outfile="${build.dir}/vizant/build.dot"
from="deploy" to="init">
<attrstmt type="node">
<attr name="style" value="filled"/>
<attr name="shape" value="egg"/>
<attr name="color" value="grey90"/>
</attrstmt>
</vizant>
<exec executable="dot">
<arg line="-Tpng ${build.dir}/vizant/build.dot -o
${build.dir}/vizant/deploy.png"/>
</exec>
</target>
|
||||||