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/05/07 17:27:52 UTC

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

dion        02/05/07 08:27:52

  Added:       util     gump.xml build-gump.xml
  Log:
  no message
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/util/gump.xml
  
  Index: gump.xml
  ===================================================================
  <module name="commons-util">
  
  
    <description>Commons Util</description>
    <url href="http://jakarta.apache.org/commons/"/>
    
    <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-util">
      
      <!-- Standard Maven target to produce Javadocs, source -->
      <!-- and binary distributions.                         -->
      
      <ant buildfile="build-gump.xml" target="jar">
        <property name="final.name" value="commons-util-@@DATE@@"/>
      </ant>
      
      <!-- All Maven projects need Ant and Xerces to build. -->
      <depend project="jakarta-ant"/>
      <depend project="xml-xerces"/>
  
      <depend project="commons-lang"/>
  
      <work nested="target/classes"/>
      <home nested="target"/>
      <jar name="commons-util-@@DATE@@.jar"/>
      <javadoc nested="docs/apidocs"/>
  
  
      
    </project>
    
  </module>
  
  
  
  1.1                  jakarta-commons-sandbox/util/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="build.dir" value="target"/>
      <property name="build.dest" value="${build.dir}/classes"/>
      
      <mkdir dir="${build.dest}"/>
      
      <javac
        destdir="${build.dest}"
        excludes="**/package.html"
        debug="false"
        deprecation="false"
        optimize="false">
        <src>
           <pathelement location="src/java"/>
        </src>
      </javac>
  
      <jar
        jarfile="${build.dir}/${final.name}.jar"
        basedir="${build.dest}"
        excludes="**/package.html"
      />
      
    </target>
  
  </project>
  
  
  

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