Changeset 139 for trunk/build.xml

Show
Ignore:
Timestamp:
08/04/09 18:44:44 (3 years ago)
Author:
martijn
Message:

All new libraries are created in dist, not lib

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r138 r139  
    4545  </target> 
    4646 
     47  <target name="dist-clean"> 
     48        <antcall target="_allmodules"> 
     49                <param name="allmodules.target" value="dist-clean"/> 
     50        </antcall> 
     51  </target> 
     52 
    4753  <!-- ant "subroutine" that calls all modules --> 
    4854  <target name="_allmodules"> 
     
    5258        <ant dir="webservice" target="${allmodules.target}"/> 
    5359  </target> 
     60   
     61   <target name="doc"> 
     62     <mkdir dir="doc"/> 
     63        <javadoc destdir="doc" 
     64                        doctitle="${project.name}" 
     65                        header="Revision ${subversion_revision}" 
     66                        footer="Generated ${TODAY}"> 
     67                <package name="org.bridgedb"/> 
     68                <package name="org.bridgedb.file"/> 
     69                <package name="org.bridgedb.rdb"/> 
     70        <package name="org.bridgedb.webservice"/> 
     71        <package name="org.bridgedb.webservice.biomart"/> 
     72                <sourcepath>                     
     73                        <pathelement location="corelib/src"/> 
     74                        <pathelement location="bio/src"/> 
     75                </sourcepath> 
     76        </javadoc> 
     77  </target>  
    5478 
    5579</project>