You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by Wendy Smoak <ws...@gmail.com> on 2006/01/29 01:21:20 UTC

[shale] Optional HtmlUnit dependency

Without htmlunit.home defined, I get...

$ ant clean
...
clean:
     [echo] Executing clean on module test-framework

BUILD FAILED
E:\svn\struts\current\shale\build.xml:340: The following error occurred while ex
ecuting this line:
E:\svn\struts\current\shale\build.xml:890: The following error occurred while ex
ecuting this line:
E:\svn\struts\current\shale\test-framework\build.xml:48: E:\svn\struts\current\s
hale\test-framework\${htmlunit.home}\lib not found.

Thanks,
--
Wendy

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org


Re: [shale] Optional HtmlUnit dependency

Posted by Craig McClanahan <cr...@apache.org>.
On 1/28/06, Wendy Smoak <ws...@gmail.com> wrote:
>
> Without htmlunit.home defined, I get...
>
> $ ant clean
> ...
> clean:
>      [echo] Executing clean on module test-framework
>
> BUILD FAILED
> E:\svn\struts\current\shale\build.xml:340: The following error occurred
> while ex
> ecuting this line:
> E:\svn\struts\current\shale\build.xml:890: The following error occurred
> while ex
> ecuting this line:
> E:\svn\struts\current\shale\test-framework\build.xml:48:
> E:\svn\struts\current\s
> hale\test-framework\${htmlunit.home}\lib not found.


That's where it is checking for the existence of an HtmlUnit class in the
compile classpath, which  includes

    <fileset dir="${htmlunit.home}/lib" includes="..."/>

I should probably set things up so that the download-dependencies target
puts the right stuff in the "lib" directory instead.

Thanks,
> --
> Wendy


Craig