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/batchmapper/build.xml

    r68 r139  
    22<project name="BatchMapper" default="jar" basedir="."> 
    33         
     4        <property name="jar.file" value="../dist/bridgedb-batchmapper.jar"/> 
     5         
    46        <path id="project.class.path"> 
    57                <pathelement location="build"/> 
    6                 <pathelement location="../lib/bridgedb.jar"/> 
    7                 <pathelement location="../lib/bridgedb-bio.jar"/> 
     8                <pathelement location="../dist/bridgedb.jar"/> 
     9                <pathelement location="../dist/bridgedb-bio.jar"/> 
    810                <!--TODO make sure corelib build is called first --> 
    911        </path> 
    1012 
    1113        <target name="prepare"> 
     14                <mkdir dir="../dist"/> 
    1215                <mkdir dir="build"/> 
    1316        </target> 
     
    3033 
    3134        <target name="jar" depends="compile"> 
    32                 <jar jarfile="../lib/bridgedb-batchmapper.jar"> 
     35                <jar jarfile="${jar.file}"> 
    3336                        <manifest> 
    3437                                <attribute name="Main-Class" value="org.bridgedb.tools.BatchMapper"/> 
     
    3942        </target> 
    4043         
     44        <target name="dist-clean" description="Remove all generated files."> 
     45                <delete file="${jar.file}"/> 
     46        </target> 
     47         
    4148        <target name="dist" depends="jar"/> 
    4249</project>