You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by jo...@fwd.at on 2003/03/30 12:15:30 UTC

SOLVED RE: Trouble with ant install command and ResourceLink

Hi Jacob,

My solution for the problem:

<target name="install"   description="Install application to servlet 
container">

    <install url="${manager.url}"
        username="${manager.username}"
        password="${manager.password}"
            path="${app.path}"
            config="file:///${build.home}/META-INF/context.xml"
             war="file:///${build.home}"/>

</target>

==> So I have the same context.xml for development (ant install) and for 
production (ant deploy)

thx alot for your great input!!!

Johannes