leosutic    2004/07/28 02:48:30

  Modified:    attributes build.xml
  Log:
  Fixed.
  
  Revision  Changes    Path
  1.6       +157 -183  jakarta-commons/attributes/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/attributes/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml 26 Jul 2004 20:48:58 -0000      1.5
  +++ build.xml 28 Jul 2004 09:48:30 -0000      1.6
  @@ -1,189 +1,163 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
   <!--
  -  build.xml generated by maven from project.xml version 2.1
  -  on date July 26 2004, time 2241
  +=
  += Copyright 2003-2004 The Apache Software Foundation
  += 
  += Licensed under the Apache License, Version 2.0 (the "License");
  += you may not use this file except in compliance with the License.
  += You may obtain a copy of the License at
  += 
  +=     http://www.apache.org/licenses/LICENSE-2.0
  += 
  += Unless required by applicable law or agreed to in writing, software
  += distributed under the License is distributed on an "AS IS" BASIS,
  += WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  += See the License for the specific language governing permissions and
  += limitations under the License.
  +=
  +-->
  +<!--
  +build.xml generated by maven from project.xml version 2.1
  +on date August 24 2003, time 1939
   -->
  -
   <project default="jar" name="commons-attributes-api" 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-attributes-api-2.1">
  -  </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="C:\Home\leo\Private\Apache\jakarta-commons\attributes\api/src/java">
  -        </pathelement>
  -      </src>
  -      <classpath>
  -        <fileset dir="${libdir}">
  -          <include name="*.jar">
  -          </include>
  -        </fileset>
  -      </classpath>
  -    </javac>
  -    <copy todir="${classesdir}">
  -      <fileset 
dir="C:\Home\leo\Private\Apache\jakarta-commons\attributes\api/src/java">
  -        <include name="**/*.dtd">
  -        </include>
  -        <include name="**/*.properties">
  -        </include>
  -        <include name="**/*.xinfo">
  -        </include>
  -        <include name="**/*.xtype">
  -        </include>
  -        <include name="**/*.xprofile">
  -        </include>
  -        <include name="**/*.xconfig">
  -        </include>
  -        <include name="**/*.xml">
  -        </include>
  -        <include name="**/*.xservice">
  -        </include>
  -      </fileset>
  -    </copy>
  -    <copy todir="${classesdir}">
  -      <fileset dir="C:\Home\leo\Private\Apache\jakarta-commons\attributes\api/../">
  -        <include name="LICENSE.txt">
  -        </include>
  -        <include name="NOTICE.txt">
  -        </include>
  -      </fileset>
  -    </copy>
  -    <copy todir="${classesdir}">
  -      <fileset dir=".">
  -        <include name="block.xml">
  -        </include>
  -      </fileset>
  -    </copy>
  -    <copy todir="${testclassesdir}">
  -      <fileset 
dir="C:\Home\leo\Private\Apache\jakarta-commons\attributes\api/src/test">
  -        <include name="**/*.dtd">
  -        </include>
  -        <include name="**/*.properties">
  -        </include>
  -        <include name="**/*.xinfo">
  -        </include>
  -        <include name="**/*.xtype">
  -        </include>
  -        <include name="**/*.xprofile">
  -        </include>
  -        <include name="**/*.xconfig">
  -        </include>
  -        <include name="**/*.xml">
  -        </include>
  -        <include name="**/*.xservice">
  -        </include>
  -        <include name="**/*.mf">
  -        </include>
  -        <include name="**/*.jar">
  -        </include>
  -      </fileset>
  -    </copy>
  -    <copy todir="${testclassesdir}">
  -      <fileset dir=".">
  -        <include name="**/*.properties">
  -        </include>
  -      </fileset>
  -    </copy>
  -    <copy todir="${testclassesdir}">
  -      <fileset 
dir="C:\Home\leo\Private\Apache\jakarta-commons\attributes\api/src/test/conf">
  -        <include name="**/*">
  -        </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">
  -  </target>
  -  <target name="compile-tests" depends="compile">
  -  </target>
  -  <target name="javadoc" description="o Generate javadoc" depends="jar">
  -    <mkdir dir="${javadocdir}">
  -    </mkdir>
  -    <tstamp>
  -      <format pattern="2003-yyyy" property="year">
  -      </format>
  -    </tstamp>
  -    <property name="copyright" value="Copyright &amp;copy; 2003-2004 The Apache 
Software Foundation. All Rights Reserved.">
  -    </property>
  -    <property name="title" value="Jakarta Commons Attributes API 2.1 API">
  -    </property>
  -    <javadoc bottom="Copyright &amp;copy; 2003-2004 The Apache Software Foundation. 
All Rights Reserved." windowtitle="Jakarta Commons Attributes API 2.1 API" use="true" 
private="true" destdir="${javadocdir}" author="true" doctitle="Jakarta Commons 
Attributes API 2.1 API" version="true" 
sourcepath="C:\Home\leo\Private\Apache\jakarta-commons\attributes\api/src/java" 
packagenames="org.apache.commons.attributes.*">
  -      <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}/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" 
src="http://www.ibiblio.org/maven/ant/jars/ant-1.5.jar";>
  -    </get>
  -    <get dest="${libdir}/xdoclet-xjavadoc-1.0.jar" usetimestamp="true" 
ignoreerrors="true" 
src="http://www.ibiblio.org/maven/xdoclet/jars/xdoclet-xjavadoc-1.0.jar";>
  -    </get>
  -    <get dest="${libdir}/commons-collections-2.1.jar" usetimestamp="true" 
ignoreerrors="true" 
src="http://www.ibiblio.org/maven/commons-collections/jars/commons-collections-2.1.jar";>
  -    </get>
  -    <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>
  +    <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.api" value="commons-attributes-api-2.1">
  +    </property>
  +    <property name="final.name.compiler" value="commons-attributes-compiler-2.1">
  +    </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="api/src/java">
  +                </pathelement>
  +                <pathelement location="compiler/src/java">
  +                </pathelement>
  +            </src>
  +            <classpath>
  +                <fileset dir="${libdir}">
  +                    <include name="*.jar">
  +                    </include>
  +                </fileset>
  +            </classpath>
  +        </javac>
  +        <copy todir="${classesdir}">
  +            <fileset dir="api/src/java">
  +                <include name="**/*.dtd">
  +                </include>
  +                <include name="**/*.properties">
  +                </include>
  +                <include name="**/*.xinfo">
  +                </include>
  +                <include name="**/*.xtype">
  +                </include>
  +                <include name="**/*.xprofile">
  +                </include>
  +                <include name="**/*.xconfig">
  +                </include>
  +                <include name="**/*.xml">
  +                </include>
  +                <include name="**/*.xservice">
  +                </include>
  +            </fileset>
  +        </copy>
  +        <copy todir="${classesdir}">
  +            <fileset dir="." includes="LICENSE.txt,NOTICE.txt"/>
  +        </copy>
  +        <copy todir="${classesdir}">
  +            <fileset dir=".">
  +                <include name="block.xml">
  +                </include>
  +            </fileset>
  +        </copy>
  +    </target>
  +    <target name="jar" description="o Create the jar" depends="compile">
  +        <jar jarfile="target/${final.name.api}.jar" 
includes="org/apache/commons/attributes/*,LICENSE.txt,NOTICE.txt" 
basedir="${classesdir}">
  +        </jar>
  +        <jar jarfile="target/${final.name.compiler}.jar" 
excludes="org/apache/commons/attributes/*" includes="**/*" 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="javadoc" description="o Generate javadoc" depends="jar">
  +        <mkdir dir="${javadocdir}">
  +        </mkdir>
  +        <tstamp>
  +            <format pattern="2003-yyyy" property="year">
  +            </format>
  +        </tstamp>
  +        <property name="copyright" value="Copyright &amp;copy;  Apache Software 
Foundation. All Rights Reserved.">
  +        </property>
  +        <property name="title" value="Jakarta Commons Attribute Compiler API 2.1 
API">
  +        </property>
  +        <javadoc use="true" private="true" destdir="${javadocdir}" author="true" 
version="true" sourcepath="api/src/java" 
packagenames="org.apache.commons.attributes.*">
  +            <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}/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" 
src="http://www.ibiblio.org/maven/ant/jars/ant-1.5.jar";>
  +        </get>
  +        <get dest="${libdir}/xdoclet-xjavadoc-1.0.jar" usetimestamp="true" 
ignoreerrors="true" 
src="http://www.ibiblio.org/maven/xdoclet/jars/xdoclet-xjavadoc-1.0.jar";>
  +        </get>
  +        <get dest="${libdir}/commons-collections-2.1.jar" usetimestamp="true" 
ignoreerrors="true" 
src="http://www.ibiblio.org/maven/commons-collections/jars/commons-collections-2.1.jar";>
  +        </get>
  +        <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-optional-1.5.jar" usetimestamp="true" 
ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-optional-1.5.jar";>
  +        </get>
  +        <jar destfile="${libdir}/javadoc-1.4.jar">
  +            <zipfileset src="${java.home}/../lib/tools.jar" 
includes="com/sun/javadoc/**,com/sun/tools/doclets/Taglet.class"/>
  +        </jar>
  +    </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>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to