You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by je...@apache.org on 2002/03/19 03:09:55 UTC

cvs commit: jakarta-commons/dbcp build.xml

jefft       02/03/18 18:09:55

  Modified:    dbcp     build.xml
  Log:
  - Link package.html to the overview
  - Synch with collections/build.xml, including generating javadocs for protected
    methods.
  
  Revision  Changes    Path
  1.6       +17 -14    jakarta-commons/dbcp/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbcp/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	16 Jan 2002 00:19:36 -0000	1.5
  +++ build.xml	19 Mar 2002 02:09:55 -0000	1.6
  @@ -1,4 +1,4 @@
  -<!-- $Id: build.xml,v 1.5 2002/01/16 00:19:36 craigmcc Exp $ -->
  +<!-- $Id: build.xml,v 1.6 2002/03/19 02:09:55 jefft Exp $ -->
   <project name="jakarta-commons-dbcp" default="test" basedir=".">
   
      <!-- patternset describing files to be copied from the doc directory -->
  @@ -149,9 +149,10 @@
                  windowtitle="${Name-Long}"
                  doctitle="${Name-Long}"
                  bottom="&lt;small&gt;Copyright &amp;copy; 2001 Apache Software Foundation. Documenation generated ${TODAY}&lt;/small&gt;."
  -               public="true"
  +               protected="true"
                  version="true"
                  author="true"
  +               overview="${source.src.java}/org/apache/commons/dbcp/package.html"
                  splitindex="false"
                  nodeprecated="true"
                  nodeprecatedlist="true"
  @@ -160,6 +161,8 @@
                  nohelp="true"
                  nonavbar="false"
                  serialwarn="false">
  +          <group title="Jakarta-commons Collections" packages="org.apache.commons.collections"/>
  +          <link href="http://java.sun.com/products/jdk/1.3/docs/api"/>
         </javadoc>
         <delete dir="${workdir}"/>
      </target>
  @@ -196,22 +199,22 @@
      <target name="test" depends="build-test" if="test.entry" description="runs (junit) unit tests">
         <!--
         <junit printsummary="yes" fork="on" haltonfailure="yes">
  -      	<formatter type="plain" usefile="false"/>
  -      	<test name="${test.entry}"/>
  -      	<classpath>
  -      		<pathelement location="${dest.classes}" />
  -      		<pathelement path="${classpath}" />
  -      		<pathelement path="${java.class.path}" />
  -      	</classpath>
  +        <formatter type="plain" usefile="false"/>
  +        <test name="${test.entry}"/>
  +        <classpath>
  +            <pathelement location="${dest.classes}" />
  +            <pathelement path="${classpath}" />
  +            <pathelement path="${java.class.path}" />
  +        </classpath>
         </junit>
         -->
  -      
  +
         <java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
  -        <arg value="${test.entry}"/> 
  +        <arg value="${test.entry}"/>
           <classpath>
  -          <pathelement location="${dest.classes}" /> 
  -          <pathelement path="${classpath}" /> 
  -          <pathelement path="${java.class.path}" /> 
  +          <pathelement location="${dest.classes}" />
  +          <pathelement path="${classpath}" />
  +          <pathelement path="${java.class.path}" />
           </classpath>
         </java>
      </target>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>