forked from paultuckey/urlrewritefilter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
26 lines (20 loc) · 1.29 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<project name="UrlRewriteFilter" default="urlrewrite-doc" basedir=".">
<!-- Give user a chance to override without editing this file (and without typing -D each time) -->
<property file="${user.home}/urlrewrite.build.properties"/>
<property file="${user.home}/build.properties"/>
<property file="${basedir}/target/classes/org/tuckey/web/filters/urlrewrite/build.number.properties" />
<property name="build.home" value="target/ant-build"/>
<property name="tomcat.home" value="${user.home}/co/urlrewritefilter/container-test/target/cargo/installs/tomcat-7.0.82/apache-tomcat-7.0.82/"/>
<property name="app.manual-version" value="5.0"/>
<path id="run.classpath">
<path path="target/urlrewritefilter-${project.version}.jar"/>
<path path="${tomcat.home}/lib/servlet-api.jar"/>
</path>
<target name="urlrewrite-doc" description="Create UrlRewriteFilter conf documentation">
<taskdef name="urlrewritedoc" classpathref="run.classpath"
classname="org.tuckey.web.filters.urlrewrite.UrlRewriteDocTask" />
<urlrewritedoc
conf="src/test/webapp/WEB-INF/urlrewrite.xml"
dest="src/doc/manual/${app.manual-version}/urlrewrite-conf-overview-sample.html"/>
</target>
</project>