On 04/03/2010 11:01, Scott Wilson wrote:
Thanks Ross - I copied the connector framework build scripts for the
parser so duplicated the same issue.
Actually there are two problems with your new sub-project.
The first is the error I created when doing the connector subproject
(testing a fix now), the second was that you need to instruct core to
build and locally deploy any sub-projects prior to compilation.
This is done in /build.xml as follows:
<target name="pre-compile-core">
<!-- localy publish sub-projects -->
<ant dir="${wookie.connector.dir}/java" target="publish-local"
inheritAll="false"/>
<ant dir="${wookie.parser.w3c.dir}/java" target="publish-local"
inheritAll="false"/>
</target>
I'll add this with my fix when fully tested.
Ross