You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by thorsten maus <ma...@pirack.com> on 2004/02/24 14:48:46 UTC

jar jboss-service.xml

hi there ..

im working using the multiproject approach ..

my hibernate-jar subrproject creates a jar file containing the hibernate 
classes as well as the
mapping files ..

i also added the properties for xdoclet to create the hibernate 
jboss-service.xml file ...

BUT ..

how do i get this file inside my  hibernate.jar /META-INF file ????



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: jar jboss-service.xml

Posted by Tim Chen <tc...@tampabay.rr.com>.
Here's one way to do it.
            <resource>
                <directory>${maven.hibernate.dir}</directory>
                <targetPath>${maven.build.dir}/META-INF</targetPath>
                <includes>
                    <include>*.xml</include>
                </includes>
            </resource>
-Tim

thorsten maus wrote:

>
> hi there ..
>
> im working using the multiproject approach ..
>
> my hibernate-jar subrproject creates a jar file containing the 
> hibernate classes as well as the
> mapping files ..
>
> i also added the properties for xdoclet to create the hibernate 
> jboss-service.xml file ...
>
> BUT ..
>
> how do i get this file inside my  hibernate.jar /META-INF file ????
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org