You could do like this in your pom:
<build>
...
<testResources>
<testResource>
<directory>/accesscontro/srcl/WEB-INF</directory>
<includes>
<include>*.xml</include>
</includes>
</testResource>
</testResources>
...
</build>
But rememeber then you need to add your current test resources in
there also.. like .e.g.
<build>
...
<testResources>
<testResource>
<directory>/accesscontro/srcl/WEB-INF</directory>
<includes>
<include>*.xml</include>
</includes>
</testResource>
<testResource>
<directory>src/test/resources</directory>
<includes>
<include>*.*</include>
</includes>
</testResource>
</testResources>
...
</build>
/Kaare
On 24/01/06, Bengt-Erik Fröberg <[EMAIL PROTECTED]> wrote:
> Hi
>
>
>
> I want to add the path /accesscontro/srcl/WEB-INF/*.xml to the test
> classpath.
>
> There I have a sping configuration file.
>
> How do I do it?
>
>
>
> Regards,
>
>
>
> /B-E
>
>
>
>
>
> ======================================
>
> Bengt-Erik Fröberg, Databasadministratör
>
> Institutionen för Epidemiologi och Biostatistik (MEB)
>
> Karolinska Institutet
>
> Box 281
>
> 171 77 Stockholm
>
> Tel: (08)-524 823 76
>
> Internet: <http://www.meb.ki.se/> http://www.meb.ki.se/
>
>
>
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]