Changeset b8b837d0ab884a1708c73e76d2afd7fcac933f83

Show
Ignore:
Timestamp:
10/21/07 11:18:40 (1 year ago)
Author:
Christopher Jung <bktheg@web.de>
git-committer:
Christopher Jung <bktheg@web.de> 1192958320 +0200
git-parent:

[8f9e52279a0268453622470ae513c0f6e074289f]

git-author:
Christopher Jung <bktheg@web.de> 1192958320 +0200
Message:

Tomcat-Reload-Target entfernt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • build.xml

    rfb8a293 rb8b837d  
    3030        <property name="app.version"   value="2"/> 
    3131        <property name="build.home"    value="${basedir}/build"/> 
    32         <property name="catalina.home" value="/path/to/tomcat5"/> 
    3332        <property name="dist.home"     value="${basedir}/dist"/> 
    3433        <property name="docs.home"     value="${basedir}/docs"/> 
     
    7473                </fileset> 
    7574        </path> 
    76          
    77         <path id="tomcat.classpath"> 
    78                 <fileset dir="${catalina.home}/common/lib"> 
    79                         <include name="*.jar"/> 
    80                 </fileset> 
    81         </path> 
    82  
    83         <available filepath="${catalina.home}/common/lib" file="ant.jar" property="tomcat.present"/> 
    84          
     75 
    8576        <!-- ================== Custom Ant Task Definitions ======================= --> 
    8677         
     
    236227        </target> 
    237228 
    238  
    239         <!-- ==================== Reload Target =================================== --> 
    240  
    241         <target name="reload" description="Reload application on servlet container" if="tomcat.present"> 
    242                 <taskdef name="reload" classname="org.apache.catalina.ant.ReloadTask" 
    243                                 classpathref="tomcat.classpath"/> 
    244                  
    245                 <reload url="${manager.url}" username="${manager.username}" password="${manager.password}" path="${app.path}"/> 
    246         </target> 
    247          
    248229        <!-- ==================== Validate Target =================================== --> 
    249230