Changeset b8b837d0ab884a1708c73e76d2afd7fcac933f83
- 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
| rfb8a293 |
rb8b837d |
|
| 30 | 30 | <property name="app.version" value="2"/> |
|---|
| 31 | 31 | <property name="build.home" value="${basedir}/build"/> |
|---|
| 32 | | <property name="catalina.home" value="/path/to/tomcat5"/> |
|---|
| 33 | 32 | <property name="dist.home" value="${basedir}/dist"/> |
|---|
| 34 | 33 | <property name="docs.home" value="${basedir}/docs"/> |
|---|
| … | … | |
| 74 | 73 | </fileset> |
|---|
| 75 | 74 | </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 | |
|---|
| 85 | 76 | <!-- ================== Custom Ant Task Definitions ======================= --> |
|---|
| 86 | 77 | |
|---|
| … | … | |
| 236 | 227 | </target> |
|---|
| 237 | 228 | |
|---|
| 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 | | |
|---|
| 248 | 229 | <!-- ==================== Validate Target =================================== --> |
|---|
| 249 | 230 | |
|---|