You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by ar...@apache.org on 2004/06/14 14:50:46 UTC

cvs commit: db-ojb build.xml

arminw      2004/06/14 05:50:46

  Modified:    .        build.xml
  Log:
  javadoc target:
  only include 'performance' and 'junit' packages
  from src/test/... directory. Exclude all test cases.
  
  Revision  Changes    Path
  1.130     +8 -3      db-ojb/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/db-ojb/build.xml,v
  retrieving revision 1.129
  retrieving revision 1.130
  diff -u -r1.129 -r1.130
  --- build.xml	14 Jun 2004 10:21:46 -0000	1.129
  +++ build.xml	14 Jun 2004 12:50:46 -0000	1.130
  @@ -703,7 +703,7 @@
       <!-- ================================================================== -->
       <target name="javadoc" depends="prepare" description="Builds the API javadocs.">
           <mkdir dir="${build.javadoc}"/>
  -        <javadoc sourcepath="${build.src}:${build.srctools}:${build.srctest}"
  +        <javadoc sourcepath="${build.src}:${build.srctools}"
           		 classpathref="compilation-classpath"
                    destdir="${build.javadoc}"
                    doctitle="${icon}${br}${name} ${version} API documentation"
  @@ -713,7 +713,12 @@
                    author="true"
                    version="true"
                    packagenames="${apipackagenames}"
  -        />
  +        >
  +            <fileset dir="${build.srctest}" defaultexcludes="yes">
  +                <include name="org/apache/ojb/junit/**" />
  +                <include name="org/apache/ojb/performance/**" />
  +            </fileset>
  +        </javadoc>
           <copy todir="${build.javadoc}">
               <fileset dir="${build.src}" includes="**/*.gif"/>
           </copy>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org