jstrachan 01/06/25 10:58:04
Modified: . common.xml
Log:
Changed <move> to <copy> to prevent wierd build errors when attempting to build
xtags. If I can figure out a way of getting this to work I'll change it back
Revision Changes Path
1.9 +10 -10 jakarta-taglibs/common.xml
Index: common.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/common.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- common.xml 2001/06/17 13:06:34 1.8
+++ common.xml 2001/06/25 17:58:00 1.9
@@ -92,8 +92,8 @@
</copy>
<style basedir="${doc.src}/web" destdir="${build.doc}"
extension=".html" style="${taglibs.xsl}" includes="*.xml">
- <param name="prefix" expression="../../"/>
- </style>
+ <param name="prefix" expression="../../"/>
+ </style>
<copy todir="${build.doc}">
<fileset dir="${doc.src}/web" includes="**/*.html"/>
<fileset dir="${taglib-doc-kit.dir}" includes="*.css"/>
@@ -191,12 +191,12 @@
<target name="documentation-dist" depends="documentation">
<antcall target="${documentation-dist.pre}"/>
<jar jarfile="${dist.doc}" basedir="${build.doc}" excludes="intro.html"/>
- <mkdir dir="${taglibs.doc}"/>
- <copy todir="${taglibs.doc}">
- <fileset dir="${build.doc}">
- <exclude name="WEB-INF"/>
- </fileset>
- </copy>
+ <mkdir dir="${taglibs.doc}"/>
+ <copy todir="${taglibs.doc}">
+ <fileset dir="${build.doc}">
+ <exclude name="WEB-INF"/>
+ </fileset>
+ </copy>
<antcall target="${documentation-dist.post}"/>
</target>
@@ -214,7 +214,7 @@
<!-- =================================================================== -->
<target name="library-dist" depends="library">
<antcall target="${library-dist.pre}"/>
- <copy file="${examples.tld}" toFile="${library.tld}"/>
+ <copy file="${examples.tld}" toFile="${library.tld}"/>
<jar jarfile="${dist.library}/${taglib.name}.jar"
basedir="${build.library}"/>
<copy file="${examples.tld}" toFile="${dist.tld}"/>
@@ -271,5 +271,5 @@
extension=".html">
<include name="*.xml" />
</style>
- <move file="${build.doc}/${taglib.name}.html" tofile="${build.doc}/index.html"/>
+ <copy file="${build.doc}/${taglib.name}.html"
tofile="${build.doc}/index.html"/>
</target>