the bad parts in the build are:
webapp-build.xml, line 96
<target name="prepare-webapp-docs" depends="validate-xdocs,validate-jars" unless="unless.exclude.webapp.documentation">
which is not executed because you set exclude.webapp.documentation to true. BUT the dependencies are executed AFAICS. It's a bit strange IMO, isn't it?
----------------------------------------------------------------------- validate-build.xml, line 72
<target name="validate-xdocs" depends="prepare-docs" unless="unless.exclude.validate.xdocs">
depends on prepare-docs and you have not excluded xdocs validation.
----------------------------------------------------------------------- docs-build.xml, line 3
<target name="prepare-docs" unless="exclude.documentation" depends="blocks">
You seem to have set an additional property exclude.documentation, which is not part of standard build.properties. Only if I add this property I can recreate you failing build. Otherwise prepare-docs is always executed (in dependency on validate-xdocs) and validate-xdocs does not fail.
Joerg
On 09.01.2004 08:05, Antonio Gallardo wrote:
Hi:
I updated from the CVS and after a "./build.sh clean" I got:
validate-xdocs: Not conducting validation of core XML documentation. Use 'forrest validate-xdocs' instead. Validating the documentation sitemap.xmap using RELAX NG ...
BUILD FAILED /cocoon-2.1/tools/targets/validate-build.xml:105: /cocoon-2.1/build/cocoon-2.1.4-dev/documentation not found.
Of course I am trying to build without docs, but don't understand why the builder is trying to validate the non existing docs.
My last build was made on 05-01-04
Is someone else experience this problem?
Best Regards,
Antonio Gallardo.
