Show gui.xml syntax highlighted
<?xml version="1.0" ?>
<project name="gui"
xmlns:core="http://smartfrog.org/build/core"
xmlns:ac="antlib:net.sf.antcontrib"
xmlns:sf="antlib:org.smartfrog.tools.ant"
xmlns:m2="antlib:org.apache.maven.artifact.ant"
>
<description>
All the targets for unit tests
</description>
<!-- import the distribution and all predecessors -->
<import file="dist.xml"/>
<!-- ========================================================== -->
<!-- override point: declare the classpath
which defaults to everything that runs tests -->
<!-- ========================================================== -->
<target name="gui-classpath" depends="declare-run.classpath" >
<path id="gui.classpath">
<path refid="run.classpath"/>
</path>
</target>
<target name="init-gui"
depends="gui-classpath,sftasks.extended-smartfrog-tasks" />
<!-- ========================================================== -->
<!-- start the daemon in the foreground -->
<!-- ========================================================== -->
<target name="daemon"
description="start a daemon in the foreground"
depends="init-gui"
>
<sf:daemon-debug spawn="false" timeout="-1"
classpathref="gui.classpath"/>
</target>
<!-- ========================================================== -->
<!-- conditionally start the daemon if one was not found already-->
<!-- ========================================================== -->
<target name="gui"
depends="init-gui" >
<sf:gui-debug
classpathref="gui.classpath"/>
</target>
<!-- ========================================================== -->
<!-- Start the console -->
<!-- ========================================================== -->
<target name="console"
description="start a console"
depends="init-gui" >
<sf:console-debug timeout="-1"
classpathref="gui.classpath"/>
</target>
<!-- ========================================================== -->
<!-- always shutdown a local daemon. keep going if one is not running -->
<!-- ========================================================== -->
<target name="shutdown"
depends="sftasks.extended-smartfrog-tasks"
description="shut down a local smartfrog daemon">
<sf:stopdaemon timeout="60000" failonerror="false" />
</target>
</project>
See more files for this project here