You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Tanuja Goturi <ta...@gmail.com> on 2008/04/29 09:30:50 UTC

Re: Include application.xml in ear

>
> Hi all,
>
> I am using Ant 1.7.0.
>
> I tried using the ear task in my build.xml
> It gives me the corresponding ear but it doesnt include the
> application.xml
>
> I tried using the metainf task too. But still it doesn't include the
> application.xml in the ear.
> It gives me the following warning
>
> *
>
> app-ear
> *:
>
> [
> *ear*] Building ear: c:\test\accountsmodule.ear
>
> [
> *ear*] Warning: selected ear files include a META-INF/application.xml
> which will be ignored (please use appxml attribute to ear task)
>
>
>
> I am mentioning below the script i am using.
>
> <target name="app-ear" depends="app-war">
>
> <delete file="c:/test/${project.name}.ear">
>
> </delete>
>
> <ear file="c:/test/${project.name}.ear" appxml="${appxml.path}">
>
> <!--
>
> <metainf dir="D:/workspace/accountsmoduleEAR/META-INF" includes="*.*"/>
>
> -->
>
> <metainf file="${appxml.path}/*.xml">
>
> </metainf>
>
> <fileset dir="c:/test/war">
>
> <include name="*.*"/>
>
> </fileset>
>
> </ear>
>
> </target>
> Kindly help me out.
>
> Thanks in Advance
> -Tanuja
>