On Mon, 2007-07-09 at 14:20 +0200, Roland Weber wrote:
> Hi Oleg,
> 
> it looks like the pom.xml for module-client does not what
> it's supposed to do. The resource processing does not pick
> up any files for me:
> 
>     <resources>
>       <resource>
>         <directory>src/main/resources</directory>
>         <filtering>true</filtering>
>         <includes>
>             <include>*.properties</include>
>         </includes>
>       </resource>
>     </resources>
> 

Yep, it is broken. Well spotted.

> I think the following should do the trick:
> 
>     <resources>
>       <resource>
>         <directory>src/main/resources</directory>
>         <filtering>false</filtering>
>         <includes>
>             <include>META-INF/*</include>
>         </includes>
>       </resource>
>       <resource>
>         <directory>src/main/resources</directory>
>         <filtering>true</filtering>
>         <includes>
>             <include>**/*.properties</include>
>         </includes>
>       </resource>
>     </resources>
> 
> Could you please verify?
> 

Look good to me.

Oleg

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


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

Reply via email to