Update of /cvsroot/clirr/clirr/xdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30773
Modified Files:
anttask.xml
Log Message:
changed layout of preformated source to make it fit into the "source code" box.
Necessary for Maven 1.0-RC3, which changed the HTML layout of preformated code.
Index: anttask.xml
===================================================================
RCS file: /cvsroot/clirr/clirr/xdocs/anttask.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- anttask.xml 23 May 2004 08:58:37 -0000 1.5
+++ anttask.xml 2 Jun 2004 07:53:31 -0000 1.6
@@ -25,20 +25,27 @@
<source>
<target name="checkbinarycompatibility" depends="build">
- <!-- buildtools.classpath should contain clirr.jar and the libraries it depends on -->
+ <!-- buildtools.classpath should contain
+ clirr.jar and the libraries it depends on -->
- <taskdef classpathref="buildtools.classpath" resource="clirrtask.properties"/>
-
- <property name="jar.baseline" value="${ant.project.name}-${compatibility.baseline.version}.jar"/>
-
- <get src="${url.libbase}/${ant.project.name}/${jar.baseline}" dest="build/tmp/${jar.baseline}"/>
+ <taskdef
+ classpathref="buildtools.classpath"
+ resource="clirrtask.properties"/>
+
+ <property
+ name="jar.baseline"
+ value="${ant.project.name}-${compatibility.baseline.version}.jar"/>
+
+ <get
+ src="${url.libbase}/${ant.project.name}/${jar.baseline}"
+ dest="build/tmp/${jar.baseline}"/>
<clirr>
- <origfiles dir="build/tmp" includes="${jar.baseline}"/>
- <newfiles dir="build/lib" includes="${jar.buildresult}"/>
+ <origfiles dir="build/tmp" includes="${jar.baseline}"/>
+ <newfiles dir="build/lib" includes="${jar.buildresult}"/>
- <!-- <formatter type="xml" outfile="build/clirr.xml" /> -->
- <!-- TODO: example for 3rd party classpath -->
+ <!-- <formatter type="xml" outfile="build/clirr.xml" /> -->
+ <!-- TODO: example for 3rd party classpath -->
</clirr>
</target>
|