I have created a small project using forrest and it runs fine using both 'forrest run' and 'forrest site'.
Now I'm trying to build the site using forrestbot but it's not working...
Here the build.xml I have created:
<description>ProUnit Documentation build script</description>
<!-- Import properties -->
<property file="build.properties" />
<property name="getsrc.local.root-dir" location="c:/work/prounit-docs"/>
<property name="build.work-dir" value="tmp/work"/>
<property name="build.log-dir" value="tmp/logs"/>
<property name="deploy.local.dir" value="deploy-docs"/>
<target name="getsrc" depends=" getsrc.clean-workdir,getsrc.local"/>
<target name="deploy" depends="deploy.local">
<echo level="info" message="DONE ???" />
</target>
<property environment="env"/>
<import file="${env.FORREST_HOME}/tools/forrestbot/core/forrestbot.xml"/>
<property name="forrest.home" value="${env.FORREST_HOME }"/>
</project>
When it runs, it reports a broken link:
[java] X [0] linkmap.html BROKEN: C:\apache-forrest-0.7\main\webapp\tmp\work\tmp\build-info.xml (The system cannot find the path specified)
I have already searched all FAQs and documentation but I admit I got a little lost.
