|
- <?xml version="1.0"?>
-
- <!--
- Copyright 2005 The Apache Software Foundation
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-
- <project name="revisiondiff-test" basedir="../../../"
- default="diff" xmlns:svn="antlib:org.apache.tools.ant.taskdefs.svn">
-
- <property name="tmpdir" value="tmpdir"/>
- <property name="trunkdir" value="${tmpdir}/trunk"/>
-
- <target name="dir-prep">
- <mkdir dir="${tmpdir}"/>
- </target>
-
- <target name="setup" depends="dir-prep">
- <svn:svn
- svnURL="http://svn.apache.org/repos/asf/jakarta/bcel/trunk"
- dest="${tmpdir}"/>
- </target>
-
- <target name="diff" depends="setup">
- <svn:revisiondiff failonerror="true" dest="${trunkdir}"
- destfile="${tmpdir}/diff.xml" start="152904" end="153682"/>
- </target>
-
- <target name="diff-using-url" depends="dir-prep">
- <svn:revisiondiff failonerror="true"
- svnURL="http://svn.apache.org/repos/asf/jakarta/bcel/trunk"
- destfile="${tmpdir}/diff.xml" start="152904" end="153682"/>
- </target>
-
- <target name="report" depends="diff-using-url">
- <style in="${tmpdir}/diff.xml"
- out="${tmpdir}/diff.html"
- style="src/etc/revisiondiff.xsl">
- <param name="title" expression="Jakarta BCEL diff"/>
- <param name="repo" expression="http://svn.apache.org/repos/asf/jakarta/bcel/trunk"/>
- </style>
- </target>
-
- <target name="cleanup">
- <delete dir="${tmpdir}" />
- </target>
- </project>
|