You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by to...@apache.org on 2003/06/11 05:44:19 UTC

cvs commit: jakarta-commons/codec build.xml

tobrien     2003/06/10 20:44:18

  Modified:    codec    build.xml
  Log:
  Ant build file is now generated with maven via the ant:generate-build target
  
  Revision  Changes    Path
  1.6       +163 -105  jakarta-commons/codec/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	30 May 2003 00:50:47 -0000	1.5
  +++ build.xml	11 Jun 2003 03:44:18 -0000	1.6
  @@ -1,105 +1,163 @@
  -<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 &amp;copy; 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>
  +<?xml version="1.0" encoding="UTF-8"?>
  +
  +<!--
  +  build.xml generated by maven from project.xml version 1.1.1-dev
  +  on date June 10 2003, time 2242
  +-->
  +
  +<project default="jar" name="commons-codec" basedir=".">
  +  <property name="defaulttargetdir" value="target">
  +  </property>
  +  <property name="libdir" value="target/lib">
  +  </property>
  +  <property name="classesdir" value="target/classes">
  +  </property>
  +  <property name="testclassesdir" value="target/test-classes">
  +  </property>
  +  <property name="testreportdir" value="target/test-reports">
  +  </property>
  +  <property name="distdir" value="dist">
  +  </property>
  +  <property name="javadocdir" value="dist/docs/api">
  +  </property>
  +  <property name="final.name" value="commons-codec-1.1.1-dev">
  +  </property>
  +  <target name="init" description="o Initializes some properties">
  +    <mkdir dir="${libdir}">
  +    </mkdir>
  +    <condition property="noget">
  +      <equals arg2="only" arg1="${build.sysclasspath}">
  +      </equals>
  +    </condition>
  +  </target>
  +  <target name="compile" description="o Compile the code" depends="get-deps">
  +    <mkdir dir="${classesdir}">
  +    </mkdir>
  +    <javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
  +      <src>
  +        <pathelement location="src/java">
  +        </pathelement>
  +      </src>
  +      <classpath>
  +        <fileset dir="${libdir}">
  +          <include name="*.jar">
  +          </include>
  +        </fileset>
  +      </classpath>
  +    </javac>
  +    <copy todir="${testclassesdir}">
  +      <fileset dir="src/test">
  +        <include name="**/*.xml">
  +        </include>
  +      </fileset>
  +    </copy>
  +  </target>
  +  <target name="jar" description="o Create the jar" depends="compile,test">
  +    <jar jarfile="target/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}">
  +    </jar>
  +  </target>
  +  <target name="clean" description="o Clean up the generated directories">
  +    <delete dir="${defaulttargetdir}">
  +    </delete>
  +    <delete dir="${distdir}">
  +    </delete>
  +  </target>
  +  <target name="dist" description="o Create a distribution" depends="jar, javadoc">
  +    <mkdir dir="dist">
  +    </mkdir>
  +    <copy todir="dist">
  +      <fileset dir="${defaulttargetdir}" includes="*.jar">
  +      </fileset>
  +      <fileset dir="${basedir}" includes="LICENSE*, README*">
  +      </fileset>
  +    </copy>
  +  </target>
  +  <target name="test" description="o Run the test cases" if="test.failure" depends="internal-test">
  +    <fail message="There were test failures.">
  +    </fail>
  +  </target>
  +  <target name="internal-test" depends="compile-tests">
  +    <mkdir dir="${testreportdir}">
  +    </mkdir>
  +    <junit dir="./" failureproperty="test.failure" printSummary="yes" fork="true" haltonerror="true">
  +      <sysproperty key="basedir" value=".">
  +      </sysproperty>
  +      <formatter type="xml">
  +      </formatter>
  +      <formatter usefile="false" type="plain">
  +      </formatter>
  +      <classpath>
  +        <fileset dir="${libdir}">
  +          <include name="*.jar">
  +          </include>
  +        </fileset>
  +        <pathelement path="${testclassesdir}">
  +        </pathelement>
  +        <pathelement path="${classesdir}">
  +        </pathelement>
  +      </classpath>
  +      <batchtest todir="${testreportdir}">
  +        <fileset dir="src/test">
  +          <include name="**/*Test.java">
  +          </include>
  +          <exclude name="**/*AbstractTest.java">
  +          </exclude>
  +        </fileset>
  +      </batchtest>
  +    </junit>
  +  </target>
  +  <target name="compile-tests" depends="compile">
  +    <mkdir dir="${testclassesdir}">
  +    </mkdir>
  +    <javac destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
  +      <src>
  +        <pathelement location="src/test">
  +        </pathelement>
  +      </src>
  +      <classpath>
  +        <fileset dir="${libdir}">
  +          <include name="*.jar">
  +          </include>
  +        </fileset>
  +        <pathelement path="${classesdir}">
  +        </pathelement>
  +      </classpath>
  +    </javac>
  +  </target>
  +  <target name="javadoc" description="o Generate javadoc" depends="jar">
  +    <mkdir dir="${javadocdir}">
  +    </mkdir>
  +    <tstamp>
  +      <format pattern="2002-yyyy" property="year">
  +      </format>
  +    </tstamp>
  +    <property name="copyright" value="Copyright &amp;copy;  Apache Software Foundation. All Rights Reserved.">
  +    </property>
  +    <property name="title" value="Codec 1.1.1-dev API">
  +    </property>
  +    <javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.commons.*.*">
  +      <classpath>
  +        <fileset dir="${libdir}">
  +          <include name="*.jar">
  +          </include>
  +        </fileset>
  +        <pathelement location="target/${final.name}.jar">
  +        </pathelement>
  +      </classpath>
  +    </javadoc>
  +  </target>
  +  <target name="get-deps" unless="noget" depends="init">
  +    <get dest="${libdir}/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar">
  +    </get>
  +    <get dest="${libdir}/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-1.5.jar">
  +    </get>
  +    <get dest="${libdir}/ant-optional-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-optional-1.5.jar">
  +    </get>
  +  </target>
  +  <target name="install-maven">
  +    <get dest="${user.home}/maven-install-latest.jar" usetimestamp="true" src="${repo}/maven/maven-install-latest.jar">
  +    </get>
  +    <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
  +    </unjar>
  +  </target>
  +</project>
  \ No newline at end of file
  
  
  

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