Hi,
I have some problems running ant targets on recent trunk:
% ant runtime
fails if run from scratch (after "ant clean")
but it succeeds after "ant test" or "ant nightly".
in a plugin folder, e.g., src/plugin/parse-metatags
% ant test
The error causing the failure is always:
.../trunk/src/plugin/build-plugin.xml:190: .../trunk/build/test/lib does not
exist.
e.g. within the chain of calls:
BUILD FAILED
.../trunk/build.xml:112: The following error occurred while executing this line:
.../trunk/src/plugin/build.xml:63: The following error occurred while executing
this line:
.../trunk/src/plugin/urlfilter-automaton/build.xml:25: The following error
occurred while executing
this line:
.../trunk/src/plugin/build-plugin.xml:190: .../trunk/build/test/lib does not
exist.
Indeed the directory does not exist because it's removed by target "clean-lib".
In this case it is the target "compile-test" of lib-regex-filter which fails.
Should it be really called for target "runtime"?
<target name="deps-jar">
<ant target="jar" inheritall="false" dir="../lib-regex-filter"/>
<ant target="compile-test" inheritall="false" dir="../lib-regex-filter"/>
</target>
Thanks,
Sebastian