You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by js...@apache.org on 2001/05/05 19:13:42 UTC

cvs commit: jakarta-taglibs common.xml

jstrachan    01/05/05 10:13:42

  Modified:    .        common.xml
  Log:
  Added the use of ${classpath} back into the build file
  
  Revision  Changes    Path
  1.2       +4 -1      jakarta-taglibs/common.xml
  
  Index: common.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/common.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- common.xml	2001/05/05 13:52:58	1.1
  +++ common.xml	2001/05/05 17:13:41	1.2
  @@ -38,11 +38,11 @@
     <!-- =================================================================== -->
     <target name="checkRequirements">
       <antcall target="${checkRequirements.pre}"/>
  -<!--
       <antcall target="checkRequiredFile">
          <param name="file" value="${env.SERVLET_JAR}"/>
          <param name="fail.message" value="a jar file containing the servlet specification classes is required to compile jakarta taglibs. please define the environment variable SERVLET_JAR and ensure that the file exists"/>
       </antcall>
  +<!--
       <antcall target="checkRequiredClass">
          <param name="class" value="org.apache.xerces.framework.XMLParser"/>
          <param name="fail.message" value="xerces is required for the &lt;style&gt; task in the &quot;documentation&quot; target. please install xerces.jar in ANT_HOME/lib"/>
  @@ -97,6 +97,7 @@
       </copy>
       <javadoc packagenames="org.apache.taglibs.*"
                sourcepath="src"
  +             classpath="${classpath}"
                destdir="${build.doc}/javadoc"
                author="true"   
                version="true"
  @@ -104,8 +105,10 @@
                windowtitle="Jakarta '${taglib.name}' custom tag library API"
                doctitle="Jakarta '${taglib.name}' custom tag library"
                bottom="Copyright &#169; 2000 Apache Software Foundation. All Rights Reserved.">
  +<!--
         <link href="http://java.sun.com/products/jdk/1.3/docs/api"/>
         <link href="http://java.sun.com/products/servlet/2.2/javadoc"/>
  +-->
       </javadoc>
       <antcall target="${documentation.post}"/>
     </target>