You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ad...@apache.org on 2002/10/21 03:44:23 UTC

cvs commit: jakarta-commons-sandbox/vfs build.xml

adammurdoch    2002/10/20 18:44:23

  Modified:    vfs      build.xml
  Log:
  Regenerated build.xml.
  
  Revision  Changes    Path
  1.3       +11 -6     jakarta-commons-sandbox/vfs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/vfs/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	21 Aug 2002 14:13:17 -0000	1.2
  +++ build.xml	21 Oct 2002 01:44:23 -0000	1.3
  @@ -16,9 +16,9 @@
         <equals arg2="only" arg1="${build.sysclasspath}"></equals>
       </condition>
     </target>
  -    
  -  <target name="jar" description="o Create the jar" depends="get-deps">
   
  +  <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">
  @@ -31,7 +31,7 @@
           </fileset>
         </classpath>
       </javac>
  -
  +    
       
    
       
  @@ -50,6 +50,11 @@
       </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>
  @@ -92,7 +97,7 @@
       </junit>
     </target>
   
  -  <target name="compile-tests" depends="jar">
  +  <target name="compile-tests" depends="compile">
       <mkdir dir="${testclassesdir}"></mkdir>
       <javac destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
         <src>
  @@ -151,10 +156,10 @@
       <get dest="lib/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-1.5.jar"></get>
       <get dest="lib/junit-3.7.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.7.jar"></get>
       <get dest="lib/commons-net-SNAPSHOT.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-net/jars/commons-net-SNAPSHOT.jar"></get>
  -    <get dest="lib/commons-io-SNAPSHOT.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-io/jars/commons-io-SNAPSHOT.jar"></get>
       <get dest="lib/commons-logging-1.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.jar"></get>
  -    <get dest="lib/excalibur-i18n-1.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/excalibur-i18n/jars/excalibur-i18n-1.0.jar"></get>
       <get dest="lib/jcifs-0.6.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/jcifs/jars/jcifs-0.6.5.jar"></get>
  +    
  +    <get dest="lib/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar"></get>
     
     </target>
   
  
  
  

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