You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2002/06/24 18:17:42 UTC

cvs commit: jakarta-commons-sandbox/fileupload gump.xml build-gump.xml

dion        2002/06/24 09:17:42

  Added:       fileupload gump.xml build-gump.xml
  Log:
  Initial generated files
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/fileupload/gump.xml
  
  Index: gump.xml
  ===================================================================
  <module name="commons-fileupload">
  
  
    <description>File upload component.</description>
    <url href="http://jakarta.apache.org/commons/fileupload/"/>
    
    <cvs repository="jakarta"/>
    
    <!-- This is really the cvs module. We need to change this but -->
    <!-- I will leave this for now until everything works.         -->
    
    <project name="commons-fileupload">
      
      <!-- Standard Maven target to produce Javadocs, source -->
      <!-- and binary distributions.                         -->
      <ant buildfile="build-gump.xml" target="jar">
        <property name="maven.final.name" value="commons-fileupload-@@DATE@@"/>
      </ant>
  
      <package>org.apache.commons.fileupload</package>
  
      <!-- All Maven projects need Ant and Xerces to build. -->
      <depend project="jakarta-ant"/>
      <depend project="xml-xerces"/>
  
      <depend project="jaf"/>
      <depend project="servletapi"/>
  
      <work nested="target/classes"/>
      <home nested="target"/>
      <jar name="commons-fileupload-@@DATE@@.jar"/>
      <javadoc nested="docs/apidocs"/>
  
      <nag from="Maven Developers &lt;turbine-maven-dev@jakarta.apache.org&gt;"
           to="commons-dev@jakarta.apache.org"/>
  
      
    </project>
    
  </module>
  
  
  
  1.1                  jakarta-commons-sandbox/fileupload/build-gump.xml
  
  Index: build-gump.xml
  ===================================================================
  <!--
  
    WARNING: This file is generated! Do not edit by hand!
    
  -->
  
  <project name="maven" default="jar" basedir=".">
  
    <target
      name="jar">
      
      <property name="maven.build.dir" value="target"/>
      <property name="maven.build.dest" value="${maven.build.dir}/classes"/>
      
      <mkdir dir="${maven.build.dest}"/>
      
      <javac
        destdir="${maven.build.dest}"
        excludes="**/package.html"
        debug="false"
        deprecation="false"
        optimize="false">
        <src>
           <pathelement location="src/java"/>
        </src>
      </javac>
  
      <jar
        jarfile="${maven.build.dir}/${maven.final.name}.jar"
        basedir="${maven.build.dest}"
        excludes="**/package.html"
      />
      
    </target>
  
  </project>
  
  
  

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