On Fri, 2003-11-21 at 23:59, [EMAIL PROTECTED] wrote:
> The resources I've defined in the project.xml are not being copied to
> target/classes.
> 
> <resources>
>        <resource>
>            <directory>${basedir}/conf/hibernate/oracle</directory>
>                 <includes>
>                         <include>**/*</include>
>                 </includes>
>         </resource>
> 

You can either try the expression **/** or you can simply use the
following:

<resources>
  <resource>
    <directory>conf/hibernate/oracle</directory>
  </resource>
</resources>

You no longer need ${basedir} post rc1 and if you only specify a
directory without includes/excludes qualifier the inclusion of the
entire directory is assumed.

> Has anyone experienced a similar problem.
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to