Subversion Repositories bacoAlunos

Rev

Rev 273 | Rev 282 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 273 Rev 281
Line 99... Line 99...
99
        <echo message="${tomcat.manager}"/>
99
        <echo message="${tomcat.manager}"/>
100
        <tomcat.install url="${tomcat.manager}" path="${tomcat.context.path.install}"
100
        <tomcat.install url="${tomcat.manager}" path="${tomcat.context.path.install}"
101
                        config="file:/${basedir}/${dist.dir}/estgweb.xml"
101
                        config="file:/${basedir}/${dist.dir}/estgweb.xml"
102
                        username="${tomcat.username}" password="${tomcat.password}" />
102
                        username="${tomcat.username}" password="${tomcat.password}" />
103
    </target>
103
    </target>
104
    <target name="tomcat.deploy" depends="build.war" >
104
    <target name="tomcat.deploy" depends="war" >
105
        <echo message="${tomcat.manager}"/>
105
        <echo message="${tomcat.manager}"/>
106
        <tomcat.deploy url="${tomcat.manager}" path="${tomcat.context.path.install}"
106
        <tomcat.deploy url="${tomcat.manager}" path="${tomcat.context.path.install}"
107
                       war="file:/${basedir}/${dist.dir}/${tomcat.war.file}"
107
                       war="file:/${basedir}/${dist.dir}/${tomcat.war.file}"
108
                       username="${tomcat.username}" password="${tomcat.password}" />
108
                       username="${tomcat.username}" password="${tomcat.password}" />
109
    </target>
109
    </target>
110
    <target name="tomcat.redeploy" depends="tomcat.undeploy,build.war">
110
    <target name="tomcat.redeploy" depends="tomcat.undeploy,war">
111
        <echo message="${tomcat.manager}"/>
111
        <echo message="${tomcat.manager}"/>
112
        <tomcat.deploy url="${tomcat.manager}" path="${tomcat.context.path.install}"
112
        <tomcat.deploy url="${tomcat.manager}" path="${tomcat.context.path.install}"
113
                       war="file:/${basedir}/${dist.dir}/${tomcat.war.file}"
113
                       war="file:/${basedir}/${dist.dir}/${tomcat.war.file}"
114
                       username="${tomcat.username}" password="${tomcat.password}" />
114
                       username="${tomcat.username}" password="${tomcat.password}" />
115
    </target>
115
    </target>