You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2003/05/30 02:42:16 UTC

cvs commit: jakarta-commons/codec build.xml

ggregory    2003/05/29 17:42:16

  Modified:    codec    build.xml
  Log:
  Create Javadoc class and package usage pages (assumes Javadoc 1.2+).
  
  Revision  Changes    Path
  1.4       +101 -175  jakarta-commons/codec/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	30 Apr 2003 13:35:14 -0000	1.3
  +++ build.xml	30 May 2003 00:42:16 -0000	1.4
  @@ -1,179 +1,105 @@
   <project name="Codec" default="compile" basedir=".">
  -
  -
  -<!--
  +    <!--
           "Codec" component of the Jakarta Commons Subproject
           $Id$
   -->
  -
  -
  -<!-- ========== Initialize Properties ===================================== -->
  -
  -  <property file="${user.home}/${component.name}.build.properties" /> 
  -  <property file="${user.home}/build.properties" />
  -  <property file="${basedir}/build.properties" />
  -  <property file="${basedir}/default.properties" />
  -
  -<!-- ========== Construct compile classpath =============================== -->
  -
  -  <path id="compile.classpath">
  -    <pathelement location="${build.home}/classes"/>
  -  </path>
  -
  -<!-- ========== Construct unit test classpath ============================= -->
  -
  -  <path id="test.classpath">
  -    <pathelement location="${build.home}/classes"/>
  -    <pathelement location="${build.home}/tests"/>
  -    <pathelement location="${junit.jar}"/>
  -  </path>
  -
  -<!-- ========== Executable Targets ======================================== -->
  -
  -  <target name="init"
  -   description="Initialize and evaluate conditionals">
  -    <echo message="-------- ${component.name} ${component.version} --------"/>
  -    <filter  token="name"                  value="${component.name}"/>
  -    <filter  token="package"               value="${component.package}"/>
  -    <filter  token="version"               value="${component.version}"/>
  -  </target>
  -
  -
  -  <target name="prepare" depends="init"
  -   description="Prepare build directory">
  -    <mkdir dir="${build.home}"/>
  -    <mkdir dir="${build.home}/classes"/>
  -    <mkdir dir="${build.home}/conf"/>
  -    <mkdir dir="${build.home}/tests"/>
  -    <mkdir dir="${build.home}/test-reports"/>
  -  </target>
  -
  -
  -  <target name="static" depends="prepare"
  -   description="Copy static files to build directory">
  -    <tstamp/>
  -    <copy  todir="${build.home}/conf" filtering="on">
  -      <fileset dir="${conf.home}" includes="*.MF"/>
  -    </copy>
  -  </target>
  -
  -
  -  <target name="compile" depends="static"
  -   description="Compile shareable components">
  -    <javac  srcdir="${source.home}"
  -           destdir="${build.home}/classes"
  -             debug="${compile.debug}"
  -       deprecation="${compile.deprecation}"
  -          optimize="${compile.optimize}">
  -      <classpath refid="compile.classpath"/>
  -    </javac>
  -    <copy    todir="${build.home}/classes" filtering="on">
  -      <fileset dir="${source.home}" excludes="**/*.java"/>
  -    </copy>
  -  </target>
  -
  -
  -  <target name="clean"
  -   description="Clean build and distribution directories">
  -    <delete    dir="${build.home}"/>
  -    <delete    dir="${dist.home}"/>
  -  </target>
  -
  -
  -  <target name="all" depends="clean,compile"
  -   description="Clean and compile all components"/>
  -
  -
  -  <target name="javadoc" depends="compile"
  -   description="Create component Javadoc documentation">
  -    <mkdir      dir="${dist.home}"/>
  -    <mkdir      dir="${dist.home}/docs"/>
  -    <mkdir      dir="${dist.home}/docs/api"/>
  -    <javadoc sourcepath="${source.home}"
  -                destdir="${dist.home}/docs/api"
  -           packagenames="org.apache.commons.*"
  -                 author="true"
  -                private="true"
  -                version="true"
  -               doctitle="&lt;h1&gt;${component.title}&lt;/h1&gt;"
  -            windowtitle="${component.title} (Version ${component.version})"
  -                 bottom="Copyright (c) 2003 - Apache Software Foundation">
  -      <classpath refid="compile.classpath"/>
  -    </javadoc>
  -  </target>
  -
  -
  -  <target name="dist" depends="compile,javadoc"
  -   description="Create binary distribution">
  -    <mkdir      dir="${dist.home}"/>
  -    <copy      file="../LICENSE"
  -              todir="${dist.home}"/>
  -    <copy      file="${basedir}/RELEASE-NOTES.txt"
  -              todir="${dist.home}"/>
  -    <antcall target="jar"/>
  -  </target>
  -
  -
  -  <target name="jar" depends="compile"
  -   description="Create jar">
  -    <mkdir      dir="${dist.home}"/>
  -    <mkdir      dir="${build.home}/classes/META-INF"/>
  -    <copy      file="../LICENSE"
  -             tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
  -    <jar    jarfile="${dist.home}/${final.name}.jar"
  -            basedir="${build.home}/classes"
  -           manifest="${build.home}/conf/MANIFEST.MF"/>
  -  </target>
  -
  -
  -  <target name="install-jar" depends="jar"
  -   description="--> Installs jar file in ${lib.repo}">
  -    <copy todir="${lib.repo}" filtering="no">
  -      <fileset dir="${dist.home}">
  -        <include name="${final.name}.jar"/>
  -      </fileset>
  -    </copy>
  -  </target>
  -
  -
  -<!-- ========== Unit Test Targets ========================================= -->
  -
  -  <target name="compile.tests" depends="compile"
  -   description="Compile unit test cases">
  -    <javac  srcdir="${test.home}"
  -           destdir="${build.home}/tests"
  -             debug="${compile.debug}"
  -       deprecation="${compile.deprecation}"
  -          optimize="${compile.optimize}">
  -      <classpath refid="test.classpath"/>
  -    </javac>
  -    <copy    todir="${build.home}/tests" filtering="on">
  -      <fileset dir="${test.home}" excludes="**/*.java"/>
  -    </copy>
  -  </target>
  -
  -
  -  
  -
  -  <!-- Run all the JUnit Tests -->
  -  <target name="test" depends="compile.tests" description="Compiles and runs unit test cases">
  -    <record name="${build.home}/test-output.txt"
  -            append="no"
  -	    action="start"/>
  -    <junit printsummary="yes" haltonfailure="yes">
  -      <classpath refid="test.classpath"/>
  -
  -      <formatter type="plain"/>
  -
  -      <batchtest fork="yes" todir="${build.home}/test-reports">
  -        <fileset dir="${test.home}">
  -          <include name="**/*Test.java"/>
  -          <exclude name="**/*AbstractTest.java"/>
  -        </fileset>
  -      </batchtest>
  -    </junit>
  -    <record name="${build.home}/test-output.txt"
  -	    action="stop"/>
  -  </target>
  -
  +    <!-- ========== Initialize Properties ===================================== -->
  +    <property file="${user.home}/${component.name}.build.properties"/>
  +    <property file="${user.home}/build.properties"/>
  +    <property file="${basedir}/build.properties"/>
  +    <property file="${basedir}/default.properties"/>
  +    <!-- ========== Construct compile classpath =============================== -->
  +    <path id="compile.classpath">
  +        <pathelement location="${build.home}/classes"/>
  +    </path>
  +    <!-- ========== Construct unit test classpath ============================= -->
  +    <path id="test.classpath">
  +        <pathelement location="${build.home}/classes"/>
  +        <pathelement location="${build.home}/tests"/>
  +        <pathelement location="${junit.jar}"/>
  +    </path>
  +    <!-- ========== Executable Targets ======================================== -->
  +    <target name="init" description="Initialize and evaluate conditionals">
  +        <echo message="-------- ${component.name} ${component.version} --------"/>
  +        <filter token="name" value="${component.name}"/>
  +        <filter token="package" value="${component.package}"/>
  +        <filter token="version" value="${component.version}"/>
  +    </target>
  +    <target name="prepare" depends="init" description="Prepare build directory">
  +        <mkdir dir="${build.home}"/>
  +        <mkdir dir="${build.home}/classes"/>
  +        <mkdir dir="${build.home}/conf"/>
  +        <mkdir dir="${build.home}/tests"/>
  +        <mkdir dir="${build.home}/test-reports"/>
  +    </target>
  +    <target name="static" depends="prepare" description="Copy static files to build directory">
  +        <tstamp/>
  +        <copy todir="${build.home}/conf" filtering="on">
  +            <fileset dir="${conf.home}" includes="*.MF"/>
  +        </copy>
  +    </target>
  +    <target name="compile" depends="static" description="Compile shareable components">
  +        <javac srcdir="${source.home}" destdir="${build.home}/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}">
  +            <classpath refid="compile.classpath"/>
  +        </javac>
  +        <copy todir="${build.home}/classes" filtering="on">
  +            <fileset dir="${source.home}" excludes="**/*.java"/>
  +        </copy>
  +    </target>
  +    <target name="clean" description="Clean build and distribution directories">
  +        <delete dir="${build.home}"/>
  +        <delete dir="${dist.home}"/>
  +    </target>
  +    <target name="all" depends="clean,compile" description="Clean and compile all components"/>
  +    <target name="javadoc" depends="compile" description="Create component Javadoc documentation">
  +        <mkdir dir="${dist.home}"/>
  +        <mkdir dir="${dist.home}/docs"/>
  +        <mkdir dir="${dist.home}/docs/api"/>
  +        <javadoc sourcepath="${source.home}" destdir="${dist.home}/docs/api" packagenames="org.apache.commons.*" author="true" private="true" version="true" doctitle="&lt;h1&gt;${component.title}&lt;/h1&gt;" windowtitle="${component.title} (Version ${component.version})" bottom="Copyright (c) 2003 - Apache Software Foundation" use="true">
  +            <classpath refid="compile.classpath"/>
  +        </javadoc>
  +    </target>
  +    <target name="dist" depends="compile,javadoc" description="Create binary distribution">
  +        <mkdir dir="${dist.home}"/>
  +        <copy file="../LICENSE" todir="${dist.home}"/>
  +        <copy file="${basedir}/RELEASE-NOTES.txt" todir="${dist.home}"/>
  +        <antcall target="jar"/>
  +    </target>
  +    <target name="jar" depends="compile" description="Create jar">
  +        <mkdir dir="${dist.home}"/>
  +        <mkdir dir="${build.home}/classes/META-INF"/>
  +        <copy file="../LICENSE" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
  +        <jar jarfile="${dist.home}/${final.name}.jar" basedir="${build.home}/classes" manifest="${build.home}/conf/MANIFEST.MF"/>
  +    </target>
  +    <target name="install-jar" depends="jar" description="--> Installs jar file in ${lib.repo}">
  +        <copy todir="${lib.repo}" filtering="no">
  +            <fileset dir="${dist.home}">
  +                <include name="${final.name}.jar"/>
  +            </fileset>
  +        </copy>
  +    </target>
  +    <!-- ========== Unit Test Targets ========================================= -->
  +    <target name="compile.tests" depends="compile" description="Compile unit test cases">
  +        <javac srcdir="${test.home}" destdir="${build.home}/tests" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}">
  +            <classpath refid="test.classpath"/>
  +        </javac>
  +        <copy todir="${build.home}/tests" filtering="on">
  +            <fileset dir="${test.home}" excludes="**/*.java"/>
  +        </copy>
  +    </target>
  +    <!-- Run all the JUnit Tests -->
  +    <target name="test" depends="compile.tests" description="Compiles and runs unit test cases">
  +        <record name="${build.home}/test-output.txt" append="no" action="start"/>
  +        <junit printsummary="yes" haltonfailure="yes">
  +            <classpath refid="test.classpath"/>
  +            <formatter type="plain"/>
  +            <batchtest fork="yes" todir="${build.home}/test-reports">
  +                <fileset dir="${test.home}">
  +                    <include name="**/*Test.java"/>
  +                    <exclude name="**/*AbstractTest.java"/>
  +                </fileset>
  +            </batchtest>
  +        </junit>
  +        <record name="${build.home}/test-output.txt" action="stop"/>
  +    </target>
   </project>
  
  
  

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